---
title: NSDecimalNumber.RoundingMode.bankers
framework: foundation
role: symbol
role_heading: Case
path: foundation/nsdecimalnumber/roundingmode/bankers
---

# NSDecimalNumber.RoundingMode.bankers

Round to the closest possible return value; when halfway between two possibilities, return the possibility whose last digit is even.

## Declaration

```swift
case bankers
```

## Discussion

Discussion In practice, this means that, over the long run, numbers will be rounded up as often as they are rounded down; there will be no systematic bias.

## See Also

### Constants

- [NSDecimalNumber.RoundingMode.plain](foundation/nsdecimalnumber/roundingmode/plain.md)
- [NSDecimalNumber.RoundingMode.down](foundation/nsdecimalnumber/roundingmode/down.md)
- [NSDecimalNumber.RoundingMode.up](foundation/nsdecimalnumber/roundingmode/up.md)
