Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EmptyNoWordBoundary (0.21 sec)

  1. src/regexp/syntax/prog.go

    // An EmptyOp specifies a kind or mixture of zero-width assertions.
    type EmptyOp uint8
    
    const (
    	EmptyBeginLine EmptyOp = 1 << iota
    	EmptyEndLine
    	EmptyBeginText
    	EmptyEndText
    	EmptyWordBoundary
    	EmptyNoWordBoundary
    )
    
    // EmptyOpContext returns the zero-width assertions
    // satisfied at the position between the runes r1 and r2.
    // Passing r1 == -1 indicates that the position is
    // at the beginning of the text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Compile", Func, 0},
    		{"DotNL", Const, 0},
    		{"EmptyBeginLine", Const, 0},
    		{"EmptyBeginText", Const, 0},
    		{"EmptyEndLine", Const, 0},
    		{"EmptyEndText", Const, 0},
    		{"EmptyNoWordBoundary", Const, 0},
    		{"EmptyOp", Type, 0},
    		{"EmptyOpContext", Func, 0},
    		{"EmptyWordBoundary", Const, 0},
    		{"ErrInternalError", Const, 0},
    		{"ErrInvalidCharClass", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top