Half constructor

Half([
  1. num? f
])

Implementation

Half([num? f]) {
  if (f != null) {
    _h = DoubleToHalf(f);
  }
}