type github.com/valyala/fastjson.Value

65 uses

	github.com/valyala/fastjson (current package)
		arena.go#L36: func (a *Arena) NewObject() *Value {
		arena.go#L48: func (a *Arena) NewArray() *Value {
		arena.go#L58: func (a *Arena) NewString(s string) *Value {
		arena.go#L70: func (a *Arena) NewStringBytes(b []byte) *Value {
		arena.go#L82: func (a *Arena) NewNumberFloat64(f float64) *Value {
		arena.go#L94: func (a *Arena) NewNumberInt(n int) *Value {
		arena.go#L106: func (a *Arena) NewNumberString(s string) *Value {
		arena.go#L114: func (a *Arena) NewNull() *Value {
		arena.go#L119: func (a *Arena) NewTrue() *Value {
		arena.go#L124: func (a *Arena) NewFalse() *Value {
		handy.go#L135: func Parse(s string) (*Value, error) {
		handy.go#L144: func MustParse(s string) *Value {
		handy.go#L155: func ParseBytes(b []byte) (*Value, error) {
		handy.go#L164: func MustParseBytes(b []byte) *Value {
		parser.go#L30: func (p *Parser) Parse(s string) (*Value, error) {
		parser.go#L51: func (p *Parser) ParseBytes(b []byte) (*Value, error) {
		parser.go#L56: 	vs []Value
		parser.go#L63: func (c *cache) getValue() *Value {
		parser.go#L67: 		c.vs = append(c.vs, Value{})
		parser.go#L95: 	v *Value
		parser.go#L101: func parseValue(s string, c *cache, depth int) (*Value, string, error) {
		parser.go#L170: func parseArray(s string, c *cache, depth int) (*Value, string, error) {
		parser.go#L187: 		var v *Value
		parser.go#L213: func parseObject(s string, c *cache, depth int) (*Value, string, error) {
		parser.go#L525: func (o *Object) Get(key string) *Value {
		parser.go#L550: func (o *Object) Visit(f func(key []byte, v *Value)) {
		parser.go#L568: type Value struct {
		parser.go#L570: 	a []*Value
		parser.go#L576: func (v *Value) MarshalTo(dst []byte) []byte {
		parser.go#L617: func (v *Value) String() string {
		parser.go#L678: func (v *Value) Type() Type {
		parser.go#L689: func (v *Value) Exists(keys ...string) bool {
		parser.go#L701: func (v *Value) Get(keys ...string) *Value {
		parser.go#L731: func (v *Value) GetObject(keys ...string) *Object {
		parser.go#L746: func (v *Value) GetArray(keys ...string) []*Value {
		parser.go#L759: func (v *Value) GetFloat64(keys ...string) float64 {
		parser.go#L772: func (v *Value) GetInt(keys ...string) int {
		parser.go#L790: func (v *Value) GetUint(keys ...string) uint {
		parser.go#L808: func (v *Value) GetInt64(keys ...string) int64 {
		parser.go#L821: func (v *Value) GetUint64(keys ...string) uint64 {
		parser.go#L836: func (v *Value) GetStringBytes(keys ...string) []byte {
		parser.go#L849: func (v *Value) GetBool(keys ...string) bool {
		parser.go#L862: func (v *Value) Object() (*Object, error) {
		parser.go#L874: func (v *Value) Array() ([]*Value, error) {
		parser.go#L886: func (v *Value) StringBytes() ([]byte, error) {
		parser.go#L896: func (v *Value) Float64() (float64, error) {
		parser.go#L906: func (v *Value) Int() (int, error) {
		parser.go#L924: func (v *Value) Uint() (uint, error) {
		parser.go#L942: func (v *Value) Int64() (int64, error) {
		parser.go#L952: func (v *Value) Uint64() (uint64, error) {
		parser.go#L962: func (v *Value) Bool() (bool, error) {
		parser.go#L973: 	valueTrue  = &Value{t: TypeTrue}
		parser.go#L974: 	valueFalse = &Value{t: TypeFalse}
		parser.go#L975: 	valueNull  = &Value{t: TypeNull}
		scanner.go#L27: 	v *Value
		scanner.go#L90: func (sc *Scanner) Value() *Value {
		update.go#L35: func (v *Value) Del(key string) {
		update.go#L55: func (o *Object) Set(key string, value *Value) {
		update.go#L82: func (v *Value) Set(key string, value *Value) {
		update.go#L102: func (v *Value) SetArrayItem(idx int, value *Value) {