pub unsafe extern "C" fn ZL_Compressor_parameterizeTokenizeNode(
compressor: *mut ZL_Compressor,
inputType: ZL_Type,
sort: bool,
) -> ZL_Result_ZL_NodeIDExpand description
Builds a tokenize node for the given parameters.
Input: @p inputType Output 0: @p inputType - alphabet of unique values Output 1: numeric - indices into the alphabet for each value
@param inputType The type of the input data. It can be either struct, numeric, or string. @param sort Whether or not to sort the alphabet. Struct types cannot be sorted. Numeric types are sorted in ascending order. String types are sorted in lexographical order.
@returns The tokenize node, or an error.