Subtract import { Subtract } from "destack:ops"; Interface for the - operator. a - b becomes a.subtract(b). export newtype interface Subtract { Output; subtract(other: T): this.Output; } language/library/src/ops/minus.ds:5:11 Members Output The result type. subtract(other: T): this.Output Subtract other from this value.