/// <summary> /// Compute a set of transitions for the given minterm. /// </summary> /// <param name="builder">the builder that owns <see cref="Node"/></param> /// <param name="minterm">minterm corresponding to some input character or False corresponding to last \n</param> /// <param name="nextCharKind"></param> /// <returns>an enumeration of the transitions as pairs of the target state and a list of effects to be applied</returns> internal List <(SymbolicRegexNode <TSet> Node, DerivativeEffect[] Effects)> NfaNextWithEffects(SymbolicRegexBuilder <TSet> builder, TSet minterm, uint nextCharKind) { // Combined character context uint context = CharKind.Context(PrevCharKind, nextCharKind); // Compute the transitions for the given context return(Node.CreateNfaDerivativeWithEffects(builder, minterm, context)); }