Files
moxa/stdlib/regexp.go

26 lines
739 B
Go

package stdlib
// Code generated by 'goexports regexp'. DO NOT EDIT.
import (
"reflect"
"regexp"
)
func init() {
Value["regexp"] = map[string]reflect.Value{
"Compile": reflect.ValueOf(regexp.Compile),
"CompilePOSIX": reflect.ValueOf(regexp.CompilePOSIX),
"Match": reflect.ValueOf(regexp.Match),
"MatchReader": reflect.ValueOf(regexp.MatchReader),
"MatchString": reflect.ValueOf(regexp.MatchString),
"MustCompile": reflect.ValueOf(regexp.MustCompile),
"MustCompilePOSIX": reflect.ValueOf(regexp.MustCompilePOSIX),
"QuoteMeta": reflect.ValueOf(regexp.QuoteMeta),
}
Type["regexp"] = map[string]reflect.Type{
"Regexp": reflect.TypeOf((*regexp.Regexp)(nil)).Elem(),
}
}