type golang.org/x/text/unicode/bidi.directionalStatusStack

9 uses

	golang.org/x/text/unicode/bidi (current package)
		core.go#L261: type directionalStatusStack struct {
		core.go#L268: func (s *directionalStatusStack) empty()     { s.stackCounter = 0 }
		core.go#L269: func (s *directionalStatusStack) pop()       { s.stackCounter-- }
		core.go#L270: func (s *directionalStatusStack) depth() int { return s.stackCounter }
		core.go#L272: func (s *directionalStatusStack) push(level level, overrideStatus Class, isolateStatus bool) {
		core.go#L279: func (s *directionalStatusStack) lastEmbeddingLevel() level {
		core.go#L283: func (s *directionalStatusStack) lastDirectionalOverrideStatus() Class {
		core.go#L287: func (s *directionalStatusStack) lastDirectionalIsolateStatus() bool {
		core.go#L293: 	var stack directionalStatusStack