Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsBracket (0.13 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    	c := Class(p.entry & 0x0F)
    	if c == Control {
    		c = controlByteToClass[p.last&0xF]
    	}
    	return c
    }
    
    // IsBracket reports whether the rune is a bracket.
    func (p Properties) IsBracket() bool { return p.entry&0xF0 != 0 }
    
    // IsOpeningBracket reports whether the rune is an opening bracket.
    // IsBracket must return true.
    func (p Properties) IsOpeningBracket() bool { return p.entry&openMask != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
Back to top