Versions in this module Expand all Collapse all v0 v0.0.2 Apr 4, 2019 Changes in this version + func Bool(value interface{}) bool + func Bytes(value interface{}) []byte + func DecryptAes(crypted string, key []byte, iv []byte) string + func EncryptAes(origData string, key []byte, iv []byte) string + func FixUpperCase(data []byte) + func Float(value interface{}) float32 + func Float64(value interface{}) float64 + func Floats(value interface{}) []float64 + func If(i bool, a, b interface{}) interface + func Int(value interface{}) int + func Int64(value interface{}) int64 + func Ints(value interface{}) []int64 + func String(value interface{}) string + func StringIf(i bool, a, b string) string + func Strings(value interface{}) []string + func Switch(i uint, args ...interface{}) interface v0.0.1 Mar 22, 2019 Changes in this version + var GlobalRand1 = rand.New(rand.NewSource(int64(time.Now().Nanosecond()))) + var GlobalRand2 = rand.New(rand.NewSource(int64(time.Now().Unix()))) + func AppendInt(buf []byte, u uint64) []byte + func DecodeInt(buf []byte) uint64 + func EncodeInt(u uint64) []byte + func NewIntEncoder(digits string) (*intEncoder, error) + func UniqueId() string