Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Str = "something" MapKey map[interface{}]string = make(map[interface{}]string) MapValue map[string]interface{} = make(map[string]interface{}) Array []interface{} = make([]interface{}, 0) Channel chan interface{} = make(chan interface{}) ROChannel <-chan interface{} = make(chan interface{}) SOChannel chan<- interface{} = make(chan interface{}) Var interface{} = Str AnonymousStruct struct{ Field interface{} } = struct{ Field interface{} }{"value"} AnonymousFn func(interface{}) interface{} = func(param interface{}) interface{} { return param } )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.