Source File
trieval.go
Belonging Package
golang.org/x/text/secure/precis
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.package precis// entry is the entry of a trie table// 7..6 property (unassigned, disallowed, maybe, valid)// 5..0 categorytype entry uint8const (propShift = 6propMask = 0xc0catMask = 0x3f)func ( entry) () property { return property( & propMask) }func ( entry) () category { return category( & catMask) }type property uint8// The order of these constants matter. A Profile may consider runes to be// allowed either from pValid or idDisOrFreePVal.const (unassigned property = iota << propShiftdisallowedidDisOrFreePVal // disallowed for Identifier, pValid for FreeFormpValid)// compute permutations of all properties and specialCategories.type category uint8const (other category = iota// Special rune typesjoiningLjoiningDjoiningTjoiningRviramaModifierviramaJoinT // Virama + JoiningTlatinSmallL // U+006cgreekgreekJoinT // Greek + JoiningThebrewhebrewJoinT // Hebrew + JoiningTjapanese // hirigana, katakana, han// Special rune types associated with contextual rules defined in// https://tools.ietf.org/html/rfc5892#appendix-A.// ContextOzeroWidthNonJoiner // rule 1zeroWidthJoiner // rule 2// ContextJmiddleDot // rule 3greekLowerNumeralSign // rule 4hebrewPreceding // rule 5 and 6katakanaMiddleDot // rule 7arabicIndicDigit // rule 8extendedArabicIndicDigit // rule 9numCategories)
![]() |
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. |