func UnstructuredToVal(unstructured interface{ … }
type unknownPreserved …
func (t *unknownPreserved) ConvertToNative(refType reflect.Type) (interface{ … }
func (t *unknownPreserved) ConvertToType(typeValue ref.Type) ref.Val { … }
func (t *unknownPreserved) Equal(other ref.Val) ref.Val { … }
func (t *unknownPreserved) Type() ref.Type { … }
func (t *unknownPreserved) Value() interface{ … }
type unstructuredMapList …
func (t *unstructuredMapList) getMap() map[interface{ … }
func (t *unstructuredMapList) toMapKey(element interface{ … }
func (t *unstructuredMapList) Equal(other ref.Val) ref.Val { … }
func (t *unstructuredMapList) Add(other ref.Val) ref.Val { … }
func escapeKeyProps(idents []string) []string { … }
type unstructuredSetList …
func (t *unstructuredSetList) getSet() map[interface{ … }
func (t *unstructuredSetList) Equal(other ref.Val) ref.Val { … }
func (t *unstructuredSetList) Add(other ref.Val) ref.Val { … }
type unstructuredList …
var _ …
func (t *unstructuredList) ConvertToNative(typeDesc reflect.Type) (interface{ … }
func (t *unstructuredList) ConvertToType(typeValue ref.Type) ref.Val { … }
func (t *unstructuredList) Equal(other ref.Val) ref.Val { … }
func (t *unstructuredList) Type() ref.Type { … }
func (t *unstructuredList) Value() interface{ … }
func (t *unstructuredList) Add(other ref.Val) ref.Val { … }
func (t *unstructuredList) Contains(val ref.Val) ref.Val { … }
func (t *unstructuredList) Get(idx ref.Val) ref.Val { … }
func (t *unstructuredList) Iterator() traits.Iterator { … }
type listIterator …
func (it *listIterator) HasNext() ref.Val { … }
func (it *listIterator) Next() ref.Val { … }
func (t *unstructuredList) Size() ref.Val { … }
type unstructuredMap …
var _ …
func (t *unstructuredMap) ConvertToNative(typeDesc reflect.Type) (interface{ … }
func (t *unstructuredMap) ConvertToType(typeValue ref.Type) ref.Val { … }
func (t *unstructuredMap) Equal(other ref.Val) ref.Val { … }
func (t *unstructuredMap) Type() ref.Type { … }
func (t *unstructuredMap) Value() interface{ … }
func (t *unstructuredMap) Contains(key ref.Val) ref.Val { … }
func (t *unstructuredMap) Get(key ref.Val) ref.Val { … }
func (t *unstructuredMap) Iterator() traits.Iterator { … }
type mapIterator …
func (it *mapIterator) HasNext() ref.Val { … }
func (it *mapIterator) Next() ref.Val { … }
func (t *unstructuredMap) Size() ref.Val { … }
func (t *unstructuredMap) Find(key ref.Val) (ref.Val, bool) { … }