mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
8 lines
157 B
Nim
8 lines
157 B
Nim
import std/fenv
|
|
|
|
|
|
func is_significant(x: float): bool =
|
|
x > minimumPositiveValue(float) and x < maximumPositiveValue(float)
|
|
|
|
doAssert is_significant(10.0)
|