Source File
trieval.go
Belonging Package
vendor/golang.org/x/text/unicode/bidi
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.package bidi// Class is the Unicode BiDi class. Each rune has a single class.type Class uintconst (L Class = iota // LeftToRightR // RightToLeftEN // EuropeanNumberES // EuropeanSeparatorET // EuropeanTerminatorAN // ArabicNumberCS // CommonSeparatorB // ParagraphSeparatorS // SegmentSeparatorWS // WhiteSpaceON // OtherNeutralBN // BoundaryNeutralNSM // NonspacingMarkAL // ArabicLetterControl // Control LRO - PDInumClassLRO // LeftToRightOverrideRLO // RightToLeftOverrideLRE // LeftToRightEmbeddingRLE // RightToLeftEmbeddingPDF // PopDirectionalFormatLRI // LeftToRightIsolateRLI // RightToLeftIsolateFSI // FirstStrongIsolatePDI // PopDirectionalIsolateunknownClass = ^Class(0))// A trie entry has the following bits:// 7..5 XOR mask for brackets// 4 1: Bracket open, 0: Bracket close// 3..0 Class typeconst (openMask = 0x10xorMaskShift = 5)
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |