Fp.opOpAssign

Overloads compound assignment operators (`+=`, `-=`, etc.) for the `Fp` type, returning `ref Fp` and operating in-place.

struct Fp(uint size)
ref nothrow scope return
opOpAssign
(
string op
)
if (
op == "*" ||
op == "/"
)
if (
size % (uint.sizeof * 8) == 0 &&
size >= (uint.sizeof * 8)
)