マシンイプシロン
1と1の次に大きい(その数値型において表現可能な)数との差
code:jl
eps(Float32) # 1.1920929f-7
eps(Float64) # 2.220446049250313e-16
1.0 + eps() # 1.000_000_000_000_000_2
1.0 + eps()/2 # 1.0
表現可能な最小の正数ではない?あんも.icon
code:jl
floatmin() # 2.2250738585072014e-308
floatmax() # 1.7976931348623157e308
typemax(Float64) # Inf
typemin(Float64) # -Inf
REPLで表示される説明に誤植があったあんも.icon
This is defined as the gap between 1 and the next largest value representable by typeof(one(T)), and is equivalent to eps(one(T)).
next larger valueであるべき