package stdlib
import (
"go/constant"
"go/token"
"reflect"
"unicode/utf8"
)
func init() {
Symbols ["unicode/utf8/utf8" ] = map [string ]reflect .Value {
"AppendRune" : reflect .ValueOf (utf8 .AppendRune ),
"DecodeLastRune" : reflect .ValueOf (utf8 .DecodeLastRune ),
"DecodeLastRuneInString" : reflect .ValueOf (utf8 .DecodeLastRuneInString ),
"DecodeRune" : reflect .ValueOf (utf8 .DecodeRune ),
"DecodeRuneInString" : reflect .ValueOf (utf8 .DecodeRuneInString ),
"EncodeRune" : reflect .ValueOf (utf8 .EncodeRune ),
"FullRune" : reflect .ValueOf (utf8 .FullRune ),
"FullRuneInString" : reflect .ValueOf (utf8 .FullRuneInString ),
"MaxRune" : reflect .ValueOf (constant .MakeFromLiteral ("1114111" , token .INT , 0 )),
"RuneCount" : reflect .ValueOf (utf8 .RuneCount ),
"RuneCountInString" : reflect .ValueOf (utf8 .RuneCountInString ),
"RuneError" : reflect .ValueOf (constant .MakeFromLiteral ("65533" , token .INT , 0 )),
"RuneLen" : reflect .ValueOf (utf8 .RuneLen ),
"RuneSelf" : reflect .ValueOf (constant .MakeFromLiteral ("128" , token .INT , 0 )),
"RuneStart" : reflect .ValueOf (utf8 .RuneStart ),
"UTFMax" : reflect .ValueOf (constant .MakeFromLiteral ("4" , token .INT , 0 )),
"Valid" : reflect .ValueOf (utf8 .Valid ),
"ValidRune" : reflect .ValueOf (utf8 .ValidRune ),
"ValidString" : reflect .ValueOf (utf8 .ValidString ),
}
}
The pages are generated with Golds v0.8.4 . (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds .