Versions in this module Expand all Collapse all v0 v0.0.1 Jan 13, 2022 Changes in this version + type Collection interface + AsMap func() map[string]interface{} + Get func(name string) Variable + Has func(name string) bool + MergeIn func(Collection) + Set func(name string, value interface{}) + func NewCollection(data map[string]interface{}) Collection + type List []interface + func (l List) All() []Variable + func (l List) Len() int + type Variable interface + AsBool func() bool + AsCollection func() Collection + AsFloat64 func() float64 + AsInteger func() int + AsList func() List + AsString func() string + Interface func() interface{} + func New(raw interface{}) Variable