Remainder import { Remainder } from "destack:ops"; Interface for the % operator. a % b becomes a.remainder(b). export newtype interface Remainder { Output; remainder(other: T): this.Output; } language/library/src/ops/remainder.ds:5:11 Members Output The result type. remainder(other: T): this.Output Return the remainder after dividing this value by other.