type mapUnstructuredInterface … func (m mapUnstructuredInterface) Set(key string, val Value) { … } func (m mapUnstructuredInterface) Get(key string) (Value, bool) { … } func (m mapUnstructuredInterface) GetUsing(a Allocator, key string) (Value, bool) { … } func (m mapUnstructuredInterface) Has(key string) bool { … } func (m mapUnstructuredInterface) Delete(key string) { … } func (m mapUnstructuredInterface) Iterate(fn func(key string, value Value) bool) bool { … } func (m mapUnstructuredInterface) IterateUsing(a Allocator, fn func(key string, value Value) bool) bool { … } func (m mapUnstructuredInterface) Length() int { … } func (m mapUnstructuredInterface) Empty() bool { … } func (m mapUnstructuredInterface) Equals(other Map) bool { … } func (m mapUnstructuredInterface) EqualsUsing(a Allocator, other Map) bool { … } func (m mapUnstructuredInterface) Zip(other Map, order MapTraverseOrder, fn func(key string, lhs, rhs Value) bool) bool { … } func (m mapUnstructuredInterface) ZipUsing(a Allocator, other Map, order MapTraverseOrder, fn func(key string, lhs, rhs Value) bool) bool { … } type mapUnstructuredString … func (m mapUnstructuredString) Set(key string, val Value) { … } func (m mapUnstructuredString) Get(key string) (Value, bool) { … } func (m mapUnstructuredString) GetUsing(a Allocator, key string) (Value, bool) { … } func (m mapUnstructuredString) Has(key string) bool { … } func (m mapUnstructuredString) Delete(key string) { … } func (m mapUnstructuredString) Iterate(fn func(key string, value Value) bool) bool { … } func (m mapUnstructuredString) IterateUsing(a Allocator, fn func(key string, value Value) bool) bool { … } func (m mapUnstructuredString) Length() int { … } func (m mapUnstructuredString) Equals(other Map) bool { … } func (m mapUnstructuredString) EqualsUsing(a Allocator, other Map) bool { … } func (m mapUnstructuredString) Zip(other Map, order MapTraverseOrder, fn func(key string, lhs, rhs Value) bool) bool { … } func (m mapUnstructuredString) ZipUsing(a Allocator, other Map, order MapTraverseOrder, fn func(key string, lhs, rhs Value) bool) bool { … } func (m mapUnstructuredString) Empty() bool { … }