And import { And } from "destack:ops"; Interface for the & operator. a & b becomes a.and(b). export newtype interface And { Output; and(other: T): this.Output; } language/library/src/ops/bitwise.ds:5:11 Members Output The result type. and(other: T): this.Output Apply bitwise or elementwise AND.