func NewValueInterface(v interface{ … }
type valueUnstructured …
func (vi *valueUnstructured) reuse(value interface{ … }
func (v valueUnstructured) IsMap() bool { … }
func (v valueUnstructured) AsMap() Map { … }
func (v valueUnstructured) AsMapUsing(_ Allocator) Map { … }
func (v valueUnstructured) IsList() bool { … }
func (v valueUnstructured) AsList() List { … }
func (v valueUnstructured) AsListUsing(_ Allocator) List { … }
func (v valueUnstructured) IsFloat() bool { … }
func (v valueUnstructured) AsFloat() float64 { … }
func (v valueUnstructured) IsInt() bool { … }
func (v valueUnstructured) AsInt() int64 { … }
func (v valueUnstructured) IsString() bool { … }
func (v valueUnstructured) AsString() string { … }
func (v valueUnstructured) IsBool() bool { … }
func (v valueUnstructured) AsBool() bool { … }
func (v valueUnstructured) IsNull() bool { … }
func (v valueUnstructured) Unstructured() interface{ … }