---
title: isNormal
framework: swift
role: symbol
role_heading: Instance Property
path: swift/float/isnormal
---

# isNormal

A Boolean value indicating whether this instance is normal.

## Declaration

```swift
var isNormal: Bool { get }
```

## Discussion

Discussion A normal value is a finite number that uses the full precision available to values of a type. Zero is neither a normal nor a subnormal number.

## See Also

### Querying a Float’s State

- [isZero](swift/float/iszero.md)
- [isFinite](swift/float/isfinite.md)
- [isInfinite](swift/float/isinfinite.md)
- [isNaN](swift/float/isnan.md)
- [isSignalingNaN](swift/float/issignalingnan.md)
- [isSubnormal](swift/float/issubnormal.md)
- [isCanonical](swift/float/iscanonical.md)
- [floatingPointClass](swift/float/floatingpointclass.md)
