fn add_transition<Q>(&mut self, from: StateIndex, label: &Q, to: StateIndex) -> Result<(), MercError>
/// Initializes the builder with pre-allocated capacity for states and transitions. The number of labels
transition_from: ByteCompressedVec::with_capacity(num_of_transitions, num_of_states.bytes_required()),
transition_to: ByteCompressedVec::with_capacity(num_of_transitions, num_of_states.bytes_required()),
fn add_transition<Q>(&mut self, from: StateIndex, label: &Q, to: StateIndex) -> Result<(), MercError>