ExactFloat.opAssign

Construct an ExactFloat from a string (such as "1.2e50"). Requires that the value is exactly representable as a floating-point number (so for example, "0.125" is allowed but "0.1" is not).

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

Meta