type GetFieldFunc …
var _ …
var _ …
type MapValue …
func NewMapValue(objectType ref.Type) *MapValue { … }
func (m *MapValue) Append(name string, callback GetFieldFunc) { … }
func (m *MapValue) Contains(key ref.Val) ref.Val { … }
func (m *MapValue) Iterator() traits.Iterator { … }
func (m *MapValue) Size() ref.Val { … }
func (m *MapValue) ConvertToNative(typeDesc reflect.Type) (any, error) { … }
func (m *MapValue) ConvertToType(typeVal ref.Type) ref.Val { … }
func (m *MapValue) Equal(other ref.Val) ref.Val { … }
func (m *MapValue) Type() ref.Type { … }
func (m *MapValue) Value() any { … }
func (m *MapValue) resolveField(name string) ref.Val { … }
func (m *MapValue) Find(key ref.Val) (ref.Val, bool) { … }
func (m *MapValue) Get(key ref.Val) ref.Val { … }
type iterator …
func (i *iterator) ConvertToNative(typeDesc reflect.Type) (any, error) { … }
func (i *iterator) ConvertToType(typeValue ref.Type) ref.Val { … }
func (i *iterator) Equal(other ref.Val) ref.Val { … }
func (i *iterator) Type() ref.Type { … }
func (i *iterator) Value() any { … }
func (i *iterator) HasNext() ref.Val { … }
func (i *iterator) Next() ref.Val { … }
var _ …