Instance Property
インスタンスプロパティ
isSubnormal
A Boolean value indicating whether the instance is subnormal.
このインスタンスがサブノーマルであるかどうかを指し示すブール値。
Technology
- Swift Standard Library
Swift標準ライブラリ
Declaration
宣言
var isSubnormal: Bool
{ get }
Discussion
解説
A subnormal value is a nonzero number that has a lesser magnitude than the smallest normal number. Subnormal values don’t use the full precision available to values of a type.
サブノーマル値は、非ゼロ数で、最も小さいノーマル数よりも少ない規模を持つものです。サブノーマル値は、ある型の値に利用可能な完全な精度を使うことはできません。
Zero is neither a normal nor a subnormal number. Subnormal numbers are often called denormal or denormalized—these are different names for the same concept.
ゼロは、ノーマルでもサブノーマル数でもありません。サブノーマル数は、しばしばデノーマルまたはデノーマライズされたと呼ばれます—それらは同じ概念に対する異なる名前です。
See Also
参照
Querying a Float's State
Floatの状態を問い合わせる
var isZero: Bool
A Boolean value indicating whether the instance is equal to zero.
このインスタンスがゼロと等しいかどうかを指し示すブール値。
var isFinite: Bool
A Boolean value indicating whether this instance is finite.
このインスタンスが有限であるかどうかを指し示すブール値。
var isInfinite: Bool
A Boolean value indicating whether the instance is infinite.
このインスタンスが無限大であるかどうかを指し示すブール値。
var isNaN: Bool
A Boolean value indicating whether the instance is NaN (“not a number”).
このインスタンスがNaN(非数)であるかどうかを指し示すブール値。
var isSignalingNaN: Bool
A Boolean value indicating whether the instance is a signaling NaN.
このインスタンスがsignaling NaNであるかどうかを指し示すブール値。
var isNormal: Bool
A Boolean value indicating whether this instance is normal.
このインスタンスがノーマルであるかどうかを指し示すブール値。
var isCanonical: Bool
A Boolean value indicating whether the instance’s representation is in its canonical form.
このインスタンスの表現がそれの正準形式であるかどうかを指し示すブール値。