UnsignedRemainderNode

Two's complement remainder operation for unsigned operands, rounds towards zero.

The divisor must not be zero, otherwise the result is a poison value.

Members

Functions

opEquals
bool opEquals(const(UnsignedRemainderNode) other)

Equivalence <=> structural equality.

opIndex
inout(InEdge)* opIndex(InEdge.ID slot)

See Node.opIndex.

toHash
hash_t toHash()

Semantic hash.

Properties

inEdges
InEdgeIterator!Callable inEdges [@property getter]

Provides an iterator over this node's in-edges.

outEdges
OutEdgeIterator!Callable outEdges [@property getter]

Provides an iterator over this node's out-edges.

Static functions

dispose
void dispose(UnsignedRemainderNode* self)

Frees all resources allocated by this node and sets it to an uninitialized state.

initialize
err_t initialize(UnsignedRemainderNode* self)

Initializes a remainder node.

Variables

dividend
OutEdge dividend;

Dividend operand.

divisor
OutEdge divisor;

Divisor operand.

remainder
InEdge remainder;

Resulting remainder.

Mixed In Members

From mixin NodeInheritance

opPostMove
void opPostMove(const(This) old)

Post-move adjusts in-edge slots' owner pointer.

See Also