# Functions
ComparatorByte provides a basic comparison on byte.
ComparatorFloat32 provides a basic comparison on float32.
ComparatorFloat64 provides a basic comparison on float64.
ComparatorInt provides a basic comparison on int.
ComparatorInt16 provides a basic comparison on int16.
ComparatorInt32 provides a basic comparison on int32.
ComparatorInt64 provides a basic comparison on int64.
ComparatorInt8 provides a basic comparison on int8.
ComparatorRune provides a basic comparison on rune.
ComparatorString provides a fast comparison on strings.
ComparatorTime provides a basic comparison on time.Time.
ComparatorUint provides a basic comparison on uint.
ComparatorUint16 provides a basic comparison on uint16.
ComparatorUint32 provides a basic comparison on uint32.
ComparatorUint64 provides a basic comparison on uint64.
ComparatorUint8 provides a basic comparison on uint8.
Dump prints variables <i...> to stdout with more manually readable.
Export returns variables <i...> as a string with more manually readable.
IsEmpty checks given <value> empty or not.
ItemValue retrieves and returns its value of which name/attribute specified by <key>.
ListItemValues retrieves and returns the elements of all item struct/map with key <key>.
ListItemValuesUnique retrieves and returns the unique elements of all struct/map with key <key>.
MapContains checks whether map <data> contains <key>.
MapContainsPossibleKey checks if the given <key> is contained in given map <data>.
MapCopy does a shallow copy from map <data> to <copy> for most commonly used map type map[string]interface{}.
MapDelete deletes all <keys> from map <data>.
MapMerge merges all map from <src> to map <dst>.
MapMergeCopy creates and returns a new map which merges all map from <src>.
MapPossibleItemByKey tries to find the possible key-value pair for given key with or without cases or chars '-'/'_'/'.'/' '.
SliceCopy does a shallow copy of slice <data> for most commonly used slice type []interface{}.
SliceDelete deletes an element at <index> and returns the new slice.
Throw throws out an exception, which can be caught be TryCatch or recover.
TryCatch implements try...catch..
# Type aliases
Comparator is a function that compare a and b, and returns the result as int.