AugDictFn

Type Alias AugDictFn 

Source
pub type AugDictFn = fn(&mut CellSlice<'_>, &mut CellSlice<'_>, &mut CellBuilder, &mut dyn CellContext) -> Result<(), Error>;
Expand description

A type for a comparator function for AugDict.

ยงArgs

  • left - a left branch data.
  • right - a right branch data.
  • builder - a builder to write the result.
  • context - a cell context.