Discussion 解説
For fixed-width floating-point types, this is the actual number of fractional significand bits. 固定長浮動小数点型に対して、これは小数部仮数ビットの実際の数です。
For extensible floating-point types, significand
should be the maximum allowed significand width (without counting any leading integral bit of the significand). If there is no upper limit, then significand
should be Int
.
拡張可能な浮動小数点型に対して、significand
は許される最大仮数幅であるべきです(全く仮数の先頭整数ビットを数えることなく)。上限がないならば、そのときsignificand
はInt
です。
Note that Float80
is 63, even though 64 bits are used to store the significand in the memory representation of a Float80
(unlike other floating-point types, Float80
explicitly stores the leading integral significand bit, but the Binary
APIs provide an abstraction so that users don’t need to be aware of this detail).
Float80
は63であることに注意してください、64ビットが使用されて仮数をFloat80
メモリ表現に格納するとしてもです(他の浮動小数点型と違い、Float80
は明示的に先頭整数仮数ビットを格納します、しかしBinary
APIはある抽象化を提供します、それでユーザはこの詳細に通じている必要はありません)。
Note 注意
This documentation comment was inherited from Binary
.
この文書化コメントは、Binary
から引き継がれました。