Documentation
¶
Index ¶
- Variables
- func GetInterface() js.Value
- type ObjectMap
- func (o ObjectMap) Clear() error
- func (o ObjectMap) Delete(key interface{}) (bool, error)
- func (o ObjectMap) Entries() (iterator.Iterator, error)
- func (o ObjectMap) ForEach(f func(value, index interface{})) error
- func (o ObjectMap) Get(key interface{}) (interface{}, error)
- func (o ObjectMap) Get_(key interface{}) interface{}
- func (o ObjectMap) Has(key interface{}) (bool, error)
- func (o ObjectMap) Has_(key interface{}) bool
- func (o ObjectMap) Keys() (iterator.Iterator, error)
- func (o ObjectMap) ObjectMap_() ObjectMap
- func (o ObjectMap) Set(key interface{}, value interface{}) error
- func (o ObjectMap) Size() (int, error)
- func (o ObjectMap) Values() (iterator.Iterator, error)
- type ObjectMapFrom
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrNotImplemented = errors.New("Browser not implemented Mapy") ErrNotAMap = errors.New("The given value must be a Map") )
Functions ¶
func GetInterface ¶
GetInterface get the JS interface of object channel
Types ¶
type ObjectMap ¶
type ObjectMap struct {
baseobject.BaseObject
}
ObjectMap
func NewFromBaseObject ¶
func NewFromBaseObject(b baseobject.BaseObject) (ObjectMap, error)
func (ObjectMap) ObjectMap_ ¶
type ObjectMapFrom ¶
type ObjectMapFrom interface {
ObjectMap_() ObjectMap
}
Click to show internal directories.
Click to hide internal directories.