Documentation ¶
Index ¶
- type Bool
- type Bytes
- type Float
- type Int
- type List
- func (l List) Append(v Value) List
- func (v List) IsBool() bool
- func (v List) IsBytes() bool
- func (v List) IsFloat() bool
- func (v List) IsInt() bool
- func (v List) IsList() bool
- func (v List) IsMap() bool
- func (v List) IsString() bool
- func (l List) Iterate(f func(v Value))
- func (l List) Length() (n int)
- func (l List) PrimitiveHinted() interface{}
- type Map
- func (v Map) IsBool() bool
- func (v Map) IsBytes() bool
- func (m Map) IsEmpty() bool
- func (v Map) IsFloat() bool
- func (v Map) IsInt() bool
- func (v Map) IsList() bool
- func (v Map) IsMap() bool
- func (v Map) IsString() bool
- func (m Map) Iterate(f func(k string, v Value))
- func (m Map) PrimitiveHinted() interface{}
- func (m Map) Set(k string, v Value) Map
- func (m Map) Value(k string) Value
- type String
- type Value
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bool ¶
type Bool bool
func (Bool) PrimitiveHinted ¶
func (v Bool) PrimitiveHinted() interface{}
type Bytes ¶
type Bytes []byte
func (Bytes) PrimitiveHinted ¶
func (v Bytes) PrimitiveHinted() interface{}
type Float ¶
type Float float64
func (Float) PrimitiveHinted ¶
func (v Float) PrimitiveHinted() interface{}
type List ¶
type List struct {
// contains filtered or unexported fields
}
func (List) PrimitiveHinted ¶
func (l List) PrimitiveHinted() interface{}
type Map ¶
type Map struct {
// contains filtered or unexported fields
}
func (Map) PrimitiveHinted ¶
func (m Map) PrimitiveHinted() interface{}
Click to show internal directories.
Click to hide internal directories.