Skip to main content

descriptor

Function descriptor 

Source
pub fn descriptor(kind: PrimitiveOpKind) -> &'static PrimitiveOpDescriptor
Expand description

Return the descriptor for a primitive operation kind.

ยงExamples

use tenferro_core_ops::{descriptor, PrimitiveOpKind};

assert_eq!(descriptor(PrimitiveOpKind::Add).name, "add");