Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InstAltMatch (0.1 sec)

  1. src/regexp/onepass.go

    }
    
    // onePassNext selects the next actionable state of the prog, based on the input character.
    // It should only be called when i.Op == InstAlt or InstAltMatch, and from the one-pass machine.
    // One of the alternates may ultimately lead without input to end of line. If the instruction
    // is InstAltMatch the path to the InstMatch is in i.Out, the normal node in i.Next.
    func onePassNext(i *onePassInst, r rune) uint32 {
    	next := i.MatchRunePos(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top