logo
pub trait DictDefault {
    fn default(op: Operator) -> Option<&'static [Operand]>;
}
Expand description

The default values of a DICT

Required Methods

Returns the default operand(s) if any for the supplied op.

Implementors