# Functions
ArrayGet getting value from array or slice by index usage:
a := [][]string{ { "0,0", "0,1" }, { "1,0", "1,1" }, }
{{ArrayGet a 0 1 }} // return "0,1".
No description provided by the author
ArrayOf returns a []T{args[0], args[1], ...}.
ArraySet set value to the array or slice by index.
Convert convert the value v to the specified Type t.
DerefType is Indirect for reflect.Type.
DerefValue is Indirect for reflect.Value.
FieldByIndexes returns a value for the field given by the struct traversal for the given value.
FieldByIndexesReadOnly returns a value for a particular struct traversal, but is not concerned with allocating nil pointers because the value is going to be used for reading and not setting.
IsArrayType return true if v is a array.
IsComplexType return true if v is a complex.
IsFloatType return true if v is a float.
IsIntType return true if v is an integer.
IsMapType return true if v is a map.
IsPtrType return true if v is a ptr.
IsSliceType return true if v is a array.
MapGet getting value from map by keys usage:
m := map[string]any{ "a": 1, "1": map[string]float64{ "c": 4, }, }
{{MapGet m "a" }} // return 1 {{MapGet m 1 "c" }} // return 4.
MapSet setting value to the map.
NewMapper returns a new mapper using the tagName as its struct field tag.
NewMapperFunc returns a new mapper which optionally obeys a field tag and a struct field name mapper func given by f.
NewMapperTagFunc returns a new mapper which contains a mapper for field names AND a mapper for tag values.
No description provided by the author
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author