UnsignedExtensionNode

Yields a wider version of its input, with added bits set to zero.

Members

Functions

opEquals
bool opEquals(const(UnsignedExtensionNode) rhs)

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(UnsignedExtensionNode* self)

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

initialize
err_t initialize(UnsignedExtensionNode* self)

Initializes an extension node.

Variables

input
OutEdge input;

Bit pattern being extended.

output
InEdge output;

Resulting bit pattern.

Mixed In Members

From mixin NodeInheritance

opPostMove
void opPostMove(const(This) old)

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

See Also