ExactFloat.opAssign

Construct an ExactFloat from a "double". The constructor is implicit so that this class can be used as a replacement for "float" or "double" in templatized libraries. (With an explicit constructor, code such as "ExactFloat f = 2.5;" would not compile.) All double-precision values are supported, including denormalized numbers, infinities, and NaNs.

  1. void opAssign(T v)
    struct ExactFloat
    nothrow pure
    void
    opAssign
    (
    T
    )
    (
    T v
    )
    if (
    traits.isFloatingPoint!T
    )
  2. void opAssign(T v)
  3. void opAssign(T s)

Meta