Implement IEEE 754 half-precision binary floating point format binary16.
This a 16 bit type, and consists of a sign bit, a 5 bit exponent, and a 10 bit significand. All operations on HalfFloat are CTFE'able.
References: Wikipedia
The half precision floating point type.
User defined literal for Half Float.
See Source File $(SARGONSRC src/sargon/_halffloat.d)
Boost License 1.0
Copyright Digital Mars 2012-2014
Walter Bright
Implement IEEE 754 half-precision binary floating point format binary16.
This a 16 bit type, and consists of a sign bit, a 5 bit exponent, and a 10 bit significand. All operations on HalfFloat are CTFE'able.
References: Wikipedia