use SmallVec;
use ValueId;
/// The operand links of one recorded node, in the operation's positional
/// order.
///
/// It is one entry of the tape's operands column: the op column
/// holds what a node computes, this column holds which earlier nodes it
/// reads. The links are stored inline up to the arity of every current
/// operation, so scanning the column stays free of pointer chasing.
pub ;