1 2 3 4 5 6 7 8 9 10
//! Collection operation specifications (group-by, aggregate, etc.). use crate::OpSpec; /// All collection specs. Currently empty — will be populated as /// collection ops are added to the vyre ISA. #[inline] pub fn specs() -> Vec<OpSpec> { Vec::new() }