Documentation ¶
Index ¶
- type Array
- type ArrayAny
- type ArrayInt
- type ArrayStr
- type Cond2
- type Cond3
- type CondWhat
- type ICond
- type List
- type ListAnyAny
- type ListAnyBool
- type ListAnyInt
- type ListAnyStr
- type ListIntAny
- type ListIntBool
- type ListIntInt
- type ListIntStr
- type ListStrAny
- type ListStrBool
- type ListStrInt
- type ListStrStr
- type Map
- type MapAnyAny
- type MapAnyBool
- type MapAnyInt
- type MapAnyStr
- type MapIntAny
- type MapIntBool
- type MapIntInt
- type MapIntStr
- type MapStrAny
- type MapStrBool
- type MapStrInt
- type MapStrStr
- type Slice
- type SliceAny
- type SliceInt
- type SliceStr
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Array ¶
type Array = []interface{} // Array is alias of frequently-used slice type []interface{}.
type ArrayAny ¶
type ArrayAny = []interface{} // ArrayAny is alias of frequently-used slice type []interface{}.
type ArrayStr ¶
type ArrayStr = []string // ArrayStr is alias of frequently-used slice type []string.
type ListAnyAny ¶
type ListAnyAny = []MapAnyAny // ListAnyAny is alias of frequently-used slice type []MapAnyAny.
type ListAnyBool ¶
type ListAnyBool = []MapAnyBool // ListAnyBool is alias of frequently-used slice type []MapAnyBool.
type ListAnyInt ¶
type ListAnyInt = []MapAnyInt // ListAnyInt is alias of frequently-used slice type []MapAnyInt.
type ListAnyStr ¶
type ListAnyStr = []MapAnyStr // ListAnyStr is alias of frequently-used slice type []MapAnyStr.
type ListIntAny ¶
type ListIntAny = []MapIntAny // ListIntAny is alias of frequently-used slice type []MapIntAny.
type ListIntBool ¶
type ListIntBool = []MapIntBool // ListIntBool is alias of frequently-used slice type []MapIntBool.
type ListIntInt ¶
type ListIntInt = []MapIntInt // ListIntInt is alias of frequently-used slice type []MapIntInt.
type ListIntStr ¶
type ListIntStr = []MapIntStr // ListIntStr is alias of frequently-used slice type []MapIntStr.
type ListStrAny ¶
type ListStrAny = []MapStrAny // ListStrAny is alias of frequently-used slice type []MapStrAny.
type ListStrBool ¶
type ListStrBool = []MapStrBool // ListStrBool is alias of frequently-used slice type []MapStrBool.
type ListStrInt ¶
type ListStrInt = []MapStrInt // ListStrInt is alias of frequently-used slice type []MapStrInt.
type ListStrStr ¶
type ListStrStr = []MapStrStr // ListStrStr is alias of frequently-used slice type []MapStrStr.
type Map ¶
type Map = map[string]interface{} // Map is alias of frequently-used map type map[string]interface{}.
type MapAnyAny ¶
type MapAnyAny = map[interface{}]interface{} // MapAnyAny is alias of frequently-used map type map[interface{}]interface{}.
type MapAnyBool ¶
type MapAnyBool = map[interface{}]bool // MapAnyBool is alias of frequently-used map type map[interface{}]bool.
type MapAnyInt ¶
type MapAnyInt = map[interface{}]int // MapAnyInt is alias of frequently-used map type map[interface{}]int.
type MapAnyStr ¶
type MapAnyStr = map[interface{}]string // MapAnyStr is alias of frequently-used map type map[interface{}]string.
type MapIntAny ¶
type MapIntAny = map[int]interface{} // MapIntAny is alias of frequently-used map type map[int]interface{}.
type MapIntBool ¶
type MapStrAny ¶
type MapStrAny = map[string]interface{} // MapStrAny is alias of frequently-used map type map[string]interface{}.
type MapStrBool ¶
type Slice ¶
type Slice = []interface{} // Slice is alias of frequently-used slice type []interface{}.
Click to show internal directories.
Click to hide internal directories.