package stdlib
import (
"encoding/json"
"reflect"
)
func init() {
Symbols ["encoding/json/json" ] = map [string ]reflect .Value {
"Compact" : reflect .ValueOf (json .Compact ),
"HTMLEscape" : reflect .ValueOf (json .HTMLEscape ),
"Indent" : reflect .ValueOf (json .Indent ),
"Marshal" : reflect .ValueOf (json .Marshal ),
"MarshalIndent" : reflect .ValueOf (json .MarshalIndent ),
"NewDecoder" : reflect .ValueOf (json .NewDecoder ),
"NewEncoder" : reflect .ValueOf (json .NewEncoder ),
"Unmarshal" : reflect .ValueOf (json .Unmarshal ),
"Valid" : reflect .ValueOf (json .Valid ),
"Decoder" : reflect .ValueOf ((*json .Decoder )(nil )),
"Delim" : reflect .ValueOf ((*json .Delim )(nil )),
"Encoder" : reflect .ValueOf ((*json .Encoder )(nil )),
"InvalidUTF8Error" : reflect .ValueOf ((*json .InvalidUTF8Error )(nil )),
"InvalidUnmarshalError" : reflect .ValueOf ((*json .InvalidUnmarshalError )(nil )),
"Marshaler" : reflect .ValueOf ((*json .Marshaler )(nil )),
"MarshalerError" : reflect .ValueOf ((*json .MarshalerError )(nil )),
"Number" : reflect .ValueOf ((*json .Number )(nil )),
"RawMessage" : reflect .ValueOf ((*json .RawMessage )(nil )),
"SyntaxError" : reflect .ValueOf ((*json .SyntaxError )(nil )),
"Token" : reflect .ValueOf ((*json .Token )(nil )),
"UnmarshalFieldError" : reflect .ValueOf ((*json .UnmarshalFieldError )(nil )),
"UnmarshalTypeError" : reflect .ValueOf ((*json .UnmarshalTypeError )(nil )),
"Unmarshaler" : reflect .ValueOf ((*json .Unmarshaler )(nil )),
"UnsupportedTypeError" : reflect .ValueOf ((*json .UnsupportedTypeError )(nil )),
"UnsupportedValueError" : reflect .ValueOf ((*json .UnsupportedValueError )(nil )),
"_Marshaler" : reflect .ValueOf ((*_encoding_json_Marshaler )(nil )),
"_Token" : reflect .ValueOf ((*_encoding_json_Token )(nil )),
"_Unmarshaler" : reflect .ValueOf ((*_encoding_json_Unmarshaler )(nil )),
}
}
type _encoding_json_Marshaler struct {
IValue interface {}
WMarshalJSON func () ([]byte , error )
}
func (W _encoding_json_Marshaler ) MarshalJSON () ([]byte , error ) {
return W .WMarshalJSON ()
}
type _encoding_json_Token struct {
IValue interface {}
}
type _encoding_json_Unmarshaler struct {
IValue interface {}
WUnmarshalJSON func (a0 []byte ) error
}
func (W _encoding_json_Unmarshaler ) UnmarshalJSON (a0 []byte ) error {
return W .WUnmarshalJSON (a0 )
}
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 .