SafeInt.pow

Raise this to the exp power using std.math.pow().

  1. M pow(M exp)
    struct SafeInt(N, IntFlagPolicy _policy, Flag!"bitOps" bitOps = Yes.bitOps)
    const pure @safe nothrow @nogc
    M
    pow
    (
    M
    )
    (
    const M exp
    )
    if (
    isFloatingPoint!M
    )
    if (
    isIntegral!N &&
    )
  2. SafeInt!(CallType!(std.math.pow, N, BasicScalar!M), .max(policy, intFlagPolicyOf!M), bitOps && hasBitOps!M) pow(M exp)

Meta