Documentation ¶
Overview ¶
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Code generated from files in client/src/svg. See https://projectforge.dev for details. DO NOT EDIT.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Package util - Content managed by Project Forge, see [projectforge.md] for details.
Index ¶
- Constants
- Variables
- func ArrayDereference[T any](x []*T) []T
- func ArrayFirstN[V any](items []V, n int) []V
- func ArrayFlatten[T any](arrs ...[]T) []T
- func ArrayFromAny(dest any) []any
- func ArrayLastN[V any](items []V, n int) []V
- func ArrayRemoveDuplicates[T comparable](x []T) []T
- func ArrayRemoveNil[T any](x []*T) []*T
- func ArraySorted[T cmp.Ordered](x []T) []T
- func ArrayToStringArray[T any](a []T) []string
- func ArrayTransform[T any, U any](x []T, f func(T) U) []U
- func AsyncCollect[T any, R any](items []T, f func(x T) (R, error)) ([]R, []error)
- func AsyncCollectMap[T any, K comparable, R any](items []T, k func(x T) K, f func(x T) (R, error)) (map[K]R, map[K]error)
- func AsyncRateLimit[T any, R any](items []T, f func(x T) (R, error), maxConcurrent int, timeout time.Duration) ([]R, []error)
- func ByteSizeIEC(b int64) string
- func ByteSizeSI(b int64) string
- func Choose[T any](b bool, ifTrue T, ifFalse T) T
- func CountryFlag(code string) string
- func CycleJSON(src any, tgt any) error
- func CycleXML(src any, tgt any) error
- func DebugBuildInfo() *debug.BuildInfo
- func DebugMemStats() *runtime.MemStats
- func DebugStartCPUProfile() error
- func DebugTakeHeapProfile() error
- func DecryptMessage(key []byte, message string, logger Logger) (string, error)
- func DefaultIfNil[T any](ptr *T, d T) T
- func EncryptMessage(key []byte, message string, logger Logger) (string, error)
- func ErrorMerge(errs ...error) error
- func Filename(s string) string
- func FromJSON(msg json.RawMessage, tgt any) error
- func FromJSONAny(msg json.RawMessage) (any, error)
- func FromJSONReader(r io.Reader, tgt any) error
- func FromJSONStrict(msg json.RawMessage, tgt any) error
- func FromJSONString(msg json.RawMessage) (string, error)
- func FromXML(msg []byte, tgt any) error
- func FromXMLAny(msg []byte) (any, error)
- func FromXMLReader(r io.Reader, tgt any) error
- func FromXMLStrict(msg []byte, tgt any) error
- func FromXMLString(msg []byte) (string, error)
- func GetEnv(name string, defaultValue ...string) string
- func GetEnvBool(name string, defaultValue bool) bool
- func GetEnvDuration(name string, defaultValue time.Duration) time.Duration
- func GetEnvInt(name string, defaultValue int) int
- func HashFNV128UUID(s string) uuid.UUID
- func HashFNV32(s string) uint32
- func HashSHA256(s string) string
- func InitAcronyms(extras ...string) error
- func JSONToMap(i any) map[string]any
- func JoinLines(ss []string, delim string, maxLen int) []string
- func JoinLinesFull(ss []string, delim string, maxLen int, prefix string, indent string, ...) string
- func LengthAny(dest any) int
- func MapError[T any, U any](xa []T, f func(el T, idx int) (U, error)) ([]U, error)
- func MarkdownTable(header []string, rows [][]string, linebreak string) (string, error)
- func MarkdownTableParse(md string) ([]string, [][]string)
- func MicrosToMillis(i int) string
- func RandomBool() bool
- func RandomBytes(size int) []byte
- func RandomDate() time.Time
- func RandomElements[T any](l []T, x int) []T
- func RandomFloat(maxExclusive int) float64
- func RandomIcon() string
- func RandomInt(maxExclusive int) int
- func RandomString(length int) string
- func ReplaceEnvVars(s string, logger Logger) string
- func RunProcess(cmd string, path string, in io.Reader, out io.Writer, er io.Writer, ...) (int, error)
- func RunProcessSimple(cmd string, path string) (int, string, error)
- func StartProcess(cmd string, path string, in io.Reader, out io.Writer, er io.Writer, ...) (*exec.Cmd, error)
- func StringArrayFromAny(a []any, maxLength int) []string
- func StringArrayMaxLength(a []string) int
- func StringArrayOxfordComma(names []string, separator string) string
- func StringArrayQuoted(a []string) []string
- func StringDetectLinebreak(s string) string
- func StringForms(s string) (string, string)
- func StringNullable(s fmt.Stringer) string
- func StringPad(s string, size int) string
- func StringPadLeft(s string, size int, chr rune) string
- func StringPadRight(s string, size int, chr rune) string
- func StringPlural(count int, s string) string
- func StringRepeat(s string, n int) string
- func StringReplaceBetween(s string, l string, r string, replacement string) (string, error)
- func StringSplit(s string, sep byte, cutc bool) (string, string)
- func StringSplitAndTrim(s string, delim string) []string
- func StringSplitLast(s string, sep byte, cutc bool) (string, string)
- func StringSplitLastOnly(s string, sep byte, cutc bool) string
- func StringSplitLines(s string) []string
- func StringSplitLinesIndented(s string, indent int, indentFirstLine bool, includeEmptyLines bool) []string
- func StringSplitPath(s string) (string, string)
- func StringSplitPathAndTrim(s string) []string
- func StringSubstringBetween(s string, l string, r string) string
- func StringToCamel(s string, extraAcronyms ...string) string
- func StringToLowerCamel(s string, extraAcronyms ...string) string
- func StringToPlural(s string) string
- func StringToSingular(s string) string
- func StringToSnake(s string, extraAcronyms ...string) string
- func StringToTitle(s string, extraAcronyms ...string) string
- func StringTruncate(s string, max int) string
- func TimeCurrent() time.Time
- func TimeCurrentMillis() int64
- func TimeCurrentNanos() int64
- func TimeCurrentP() *time.Time
- func TimeCurrentUnix() int64
- func TimeFromFull(s string) (*time.Time, error)
- func TimeFromFullMS(s string) (*time.Time, error)
- func TimeFromHTML(s string) (*time.Time, error)
- func TimeFromJS(s string) (*time.Time, error)
- func TimeFromRFC3339(s string) (*time.Time, error)
- func TimeFromString(s string) (*time.Time, error)
- func TimeFromStringFmt(s string, fmt string) (*time.Time, error)
- func TimeFromStringSimple(s string) *time.Time
- func TimeFromVerbose(s string) (*time.Time, error)
- func TimeFromYMD(s string) (*time.Time, error)
- func TimeRelative(t *time.Time) string
- func TimeToFull(d *time.Time) string
- func TimeToFullMS(d *time.Time) string
- func TimeToHTML(d *time.Time) string
- func TimeToHours(d *time.Time) string
- func TimeToJS(d *time.Time) string
- func TimeToMap(t time.Time) map[string]any
- func TimeToRFC3339(d *time.Time) string
- func TimeToString(d *time.Time, fmt string) string
- func TimeToVerbose(d *time.Time) string
- func TimeToYMD(d *time.Time) string
- func TimeToday() *time.Time
- func TimeTruncate(t *time.Time) *time.Time
- func ToCSV(data any) ([]string, [][]string, error)
- func ToCSVBytes(data any) ([]byte, error)
- func ToJSON(x any) string
- func ToJSONBytes(x any, indent bool) []byte
- func ToJSONCompact(x any) string
- func ToXML(x any) (string, error)
- func ToXMLBytes(x any, indent bool) ([]byte, error)
- func ToXMLCompact(x any) (string, error)
- func UUID() uuid.UUID
- func UUIDFromString(s string) *uuid.UUID
- func UUIDFromStringOK(s string) uuid.UUID
- func UUIDP() *uuid.UUID
- func UUIDString(u *uuid.UUID) string
- type DebugInfo
- type Diff
- type Diffs
- type DiffsSet
- type ErrorDetail
- type ErrorFrame
- type FieldDesc
- type FieldDescs
- type KeyTypeDesc
- type KeyTypeDescs
- type KeyVal
- type KeyVals
- type Logger
- type Node
- type Nodes
- type OrderedMap
- func (o *OrderedMap[V]) Append(k string, v V)
- func (o *OrderedMap[V]) Get(k string) (V, bool)
- func (o *OrderedMap[V]) GetSimple(k string) V
- func (o OrderedMap[V]) MarshalJSON() ([]byte, error)
- func (o OrderedMap[V]) MarshalXML(e *xml.Encoder, start xml.StartElement) error
- func (o OrderedMap[V]) MarshalYAML() (any, error)
- func (o *OrderedMap[V]) UnmarshalJSON(b []byte) error
- type Pkg
- func (p Pkg) Drop(n int) Pkg
- func (p Pkg) Equals(other Pkg) bool
- func (p Pkg) Last() string
- func (p Pkg) Push(name string) Pkg
- func (p Pkg) Quoted(quote string) string
- func (p Pkg) Shift() Pkg
- func (p Pkg) StartsWith(t Pkg) bool
- func (p Pkg) String() string
- func (p Pkg) StringWith(extra ...string) string
- func (p Pkg) ToPath(extra ...string) string
- func (p Pkg) Trim(src Pkg) Pkg
- func (p Pkg) With(key string) Pkg
- type StringSlice
- type Timer
- type Tree
- type ValueMap
- func (m ValueMap) Add(kvs ...any)
- func (m ValueMap) AsChanges() (ValueMap, error)
- func (m ValueMap) Clone() ValueMap
- func (m ValueMap) Filter(keys []string) ValueMap
- func (m ValueMap) GetArray(key string, allowEmpty bool) ([]any, error)
- func (m ValueMap) GetArrayOpt(key string) []any
- func (m ValueMap) GetBool(key string, allowEmpty bool) (bool, error)
- func (m ValueMap) GetBoolOpt(key string) bool
- func (m ValueMap) GetFloat(key string, allowEmpty bool) (float64, error)
- func (m ValueMap) GetFloatArray(key string, allowEmpty bool) ([]float64, error)
- func (m ValueMap) GetFloatOpt(key string) float64
- func (m ValueMap) GetInt(key string, allowEmpty bool) (int, error)
- func (m ValueMap) GetInt64(key string, allowEmpty bool) (int64, error)
- func (m ValueMap) GetIntArray(key string, allowEmpty bool) ([]int, error)
- func (m ValueMap) GetIntOpt(key string) int
- func (m ValueMap) GetMap(key string, allowEmpty bool) (ValueMap, error)
- func (m ValueMap) GetMapArray(key string, allowEmpty bool) ([]ValueMap, error)
- func (m ValueMap) GetMapOpt(key string) ValueMap
- func (m ValueMap) GetPath(path string, allowMissing bool) (any, error)
- func (m ValueMap) GetRequired(k string) (any, error)
- func (m ValueMap) GetString(key string, allowEmpty bool) (string, error)
- func (m ValueMap) GetStringArray(key string, allowEmpty bool) ([]string, error)
- func (m ValueMap) GetStringArrayOpt(key string) []string
- func (m ValueMap) GetStringOpt(key string) string
- func (m ValueMap) GetStringPtr(key string) *string
- func (m ValueMap) GetTime(key string, allowEmpty bool) (*time.Time, error)
- func (m ValueMap) GetTimeOpt(key string) time.Time
- func (m ValueMap) GetType(key string, ret any) error
- func (m ValueMap) GetUUID(key string, allowEmpty bool) (*uuid.UUID, error)
- func (m ValueMap) GetUUIDOpt(key string) uuid.UUID
- func (m ValueMap) HasKey(key string) bool
- func (m ValueMap) Keys() []string
- func (m ValueMap) KeysAndValues() ([]string, []any)
- func (m ValueMap) MarshalXML(e *xml.Encoder, start xml.StartElement) error
- func (m ValueMap) Merge(args ...ValueMap) ValueMap
- func (m ValueMap) Overwrite(sourceMap ValueMap) ValueMap
- func (m ValueMap) ParseArray(path string, allowMissing bool, allowEmpty bool, coerce bool) ([]any, error)
- func (m ValueMap) ParseArrayFloat(path string, allowMissing bool, allowEmpty bool) ([]float64, error)
- func (m ValueMap) ParseArrayInt(path string, allowMissing bool, allowEmpty bool) ([]int, error)
- func (m ValueMap) ParseArrayMap(path string, allowMissing bool, allowEmpty bool) ([]ValueMap, error)
- func (m ValueMap) ParseArrayString(path string, allowMissing bool, allowEmpty bool) ([]string, error)
- func (m ValueMap) ParseBool(path string, allowMissing bool, allowEmpty bool) (bool, error)
- func (m ValueMap) ParseFloat(path string, allowMissing bool, allowEmpty bool) (float64, error)
- func (m ValueMap) ParseInt(path string, allowMissing bool, allowEmpty bool) (int, error)
- func (m ValueMap) ParseMap(path string, allowMissing bool, allowEmpty bool) (ValueMap, error)
- func (m ValueMap) ParseString(path string, allowMissing bool, allowEmpty bool) (string, error)
- func (m ValueMap) ParseTime(path string, allowMissing bool, allowEmpty bool) (*time.Time, error)
- func (m ValueMap) ParseUUID(path string, allowMissing bool, allowEmpty bool) (*uuid.UUID, error)
- func (m ValueMap) SetPath(path string, val any) error
- func (m ValueMap) String() string
- func (m ValueMap) ToQueryString() string
- func (m ValueMap) ToStringMap() map[string]string
Constants ¶
const ( BoolTrue = "true" BoolFalse = "false" )
const ( AppKey = "projectforge" AppName = "Project Forge" AppSummary = "Build and maintain feature-rich applications using Golang" AppPort = 40000 AppContact = "Kyle U <projectforge@kyleu.com>" AppURL = "https://projectforge.dev" AppSource = "https://github.com/kyleu/projectforge" AppLegal = `Built by <a href="mailto:projectforge@kyleu.com">Kyle U</a>, all rights reserved` KeyError = "error" KeyRandom = "random" KeyUnknown = "unknown" ExtJSON = ".json" ExtMarkdown = ".md" // $PF_SECTION_START(keys)$. DatabaseMySQL = "mysql" DatabasePostgreSQL = "postgres" DatabaseSQLite = "sqlite" DatabaseSQLServer = "sqlserver" KeyDetail = "detail" KeySimple = "simple" ExtCSS = ".css" ExtGo = ".go" ExtHTML = ".html" ExtJS = ".js" ExtMod = ".mod" ExtSQL = ".sql" ExtSVG = ".svg" ExtTS = ".ts" )
Variables ¶
var DEBUG = false
var SVGIconKeys = []string{} /* 144 elements not displayed */
var SVGLibrary = map[string]string{}/* 145 elements not displayed */
var StringDefaultLinebreak = func() string { if runtime.GOOS == "windows" { return winLB } return saneLB }()
var UUIDDefault = uuid.UUID{}
Functions ¶
func ArrayDereference ¶ added in v0.9.29
func ArrayDereference[T any](x []*T) []T
func ArrayFirstN ¶ added in v0.8.15
func ArrayFlatten ¶ added in v0.8.15
func ArrayFlatten[T any](arrs ...[]T) []T
func ArrayFromAny ¶ added in v0.2.32
func ArrayLastN ¶ added in v0.8.15
func ArrayRemoveDuplicates ¶ added in v0.2.33
func ArrayRemoveDuplicates[T comparable](x []T) []T
func ArrayRemoveNil ¶ added in v0.6.15
func ArrayRemoveNil[T any](x []*T) []*T
func ArraySorted ¶ added in v0.10.14
func ArrayToStringArray ¶ added in v1.0.7
func ArrayTransform ¶ added in v1.0.6
func AsyncCollect ¶ added in v0.2.29
func AsyncCollectMap ¶ added in v0.6.9
func AsyncCollectMap[T any, K comparable, R any](items []T, k func(x T) K, f func(x T) (R, error)) (map[K]R, map[K]error)
func AsyncRateLimit ¶ added in v0.6.0
func ByteSizeIEC ¶ added in v0.2.38
func ByteSizeSI ¶ added in v0.2.38
func CountryFlag ¶ added in v0.6.3
func DebugBuildInfo ¶ added in v0.11.5
func DebugMemStats ¶ added in v0.11.5
func DebugStartCPUProfile ¶ added in v0.11.5
func DebugStartCPUProfile() error
func DebugTakeHeapProfile ¶ added in v0.11.5
func DebugTakeHeapProfile() error
func DecryptMessage ¶
func DefaultIfNil ¶ added in v0.7.21
func DefaultIfNil[T any](ptr *T, d T) T
func EncryptMessage ¶
func ErrorMerge ¶ added in v0.3.15
func FromJSONAny ¶ added in v1.1.0
func FromJSONAny(msg json.RawMessage) (any, error)
func FromJSONStrict ¶
func FromJSONStrict(msg json.RawMessage, tgt any) error
func FromJSONString ¶ added in v0.11.14
func FromJSONString(msg json.RawMessage) (string, error)
func FromXMLAny ¶ added in v1.1.0
func FromXMLStrict ¶ added in v1.1.0
func FromXMLString ¶ added in v1.1.0
func GetEnvBool ¶ added in v0.2.14
func GetEnvDuration ¶ added in v0.3.8
func HashFNV128UUID ¶ added in v1.0.9
func HashSHA256 ¶
HashSHA256 returns a Base64-encoded string representing the SHA-256 hash of the argument.
func InitAcronyms ¶ added in v1.0.6
func JoinLinesFull ¶ added in v1.1.0
func MarkdownTable ¶ added in v0.2.9
func MarkdownTableParse ¶ added in v1.0.21
func MicrosToMillis ¶
func RandomBool ¶
func RandomBool() bool
func RandomBytes ¶
func RandomDate ¶
func RandomElements ¶ added in v1.0.12
func RandomFloat ¶ added in v0.5.1
func RandomIcon ¶ added in v1.0.5
func RandomIcon() string
func RandomString ¶
func ReplaceEnvVars ¶
func RunProcess ¶
func StartProcess ¶ added in v0.6.10
func StringArrayFromAny ¶ added in v1.1.1
func StringArrayMaxLength ¶
func StringArrayOxfordComma ¶
func StringArrayQuoted ¶
func StringDetectLinebreak ¶ added in v0.10.23
func StringForms ¶
func StringNullable ¶ added in v1.1.0
func StringPlural ¶
func StringRepeat ¶
func StringReplaceBetween ¶ added in v0.7.5
func StringSplitAndTrim ¶
func StringSplitLastOnly ¶ added in v0.10.20
func StringSplitLines ¶ added in v0.10.23
func StringSplitLinesIndented ¶ added in v0.12.3
func StringSplitPath ¶ added in v0.10.20
func StringSplitPathAndTrim ¶ added in v0.10.19
func StringSubstringBetween ¶ added in v0.7.5
func StringToCamel ¶
func StringToLowerCamel ¶
func StringToPlural ¶
func StringToSingular ¶
func StringToSnake ¶ added in v0.3.15
func StringToTitle ¶
func StringTruncate ¶
func TimeCurrent ¶ added in v0.10.14
func TimeCurrentMillis ¶
func TimeCurrentMillis() int64
func TimeCurrentNanos ¶ added in v0.10.14
func TimeCurrentNanos() int64
func TimeCurrentP ¶ added in v0.10.14
func TimeCurrentUnix ¶ added in v0.10.14
func TimeCurrentUnix() int64
func TimeFromStringSimple ¶ added in v1.0.12
func TimeRelative ¶
func TimeToFull ¶
func TimeToFullMS ¶ added in v1.0.16
func TimeToHTML ¶
func TimeToHours ¶ added in v1.0.21
func TimeToRFC3339 ¶ added in v1.0.26
func TimeToVerbose ¶ added in v0.9.17
func ToCSVBytes ¶ added in v1.1.0
func ToJSONBytes ¶
func ToJSONCompact ¶
func ToXMLCompact ¶ added in v1.1.0
func UUIDFromString ¶
func UUIDFromStringOK ¶ added in v0.8.24
func UUIDString ¶ added in v0.6.24
Types ¶
type DebugInfo ¶
type DebugInfo struct { ServerTags *OrderedMap[string] AppTags *OrderedMap[string] RuntimeTags *OrderedMap[string] Mods []*debug.Module }
type Diff ¶
type Diff struct { Path string `json:"path"` Old string `json:"o,omitempty"` New string `json:"n"` }
func (Diff) StringVerbose ¶ added in v0.5.6
type Diffs ¶
type Diffs []*Diff
func DiffObjectsIgnoring ¶
func RandomDiffs ¶
func (Diffs) StringVerbose ¶ added in v0.5.6
type ErrorDetail ¶
type ErrorDetail struct { Type string `json:"type" xml:"type"` Message string `json:"message" xml:"message"` Stack []ErrorFrame `json:"stack,omitempty" xml:"stack,omitempty"` StackTrace errors.StackTrace `json:"-" xml:"-"` Cause *ErrorDetail `json:"cause,omitempty" xml:"cause,omitempty"` }
func GetErrorDetail ¶
func GetErrorDetail(e error, includeStack bool) *ErrorDetail
type ErrorFrame ¶
func TraceDetail ¶
func TraceDetail(trace errors.StackTrace) []ErrorFrame
type FieldDescs ¶ added in v0.12.0
type FieldDescs []*FieldDesc
func (FieldDescs) Keys ¶ added in v1.1.0
func (d FieldDescs) Keys() []string
type KeyTypeDesc ¶ added in v0.2.9
type KeyTypeDesc struct { Key string `json:"key"` Type string `json:"type"` Description string `json:"description"` }
func (*KeyTypeDesc) Array ¶ added in v0.2.9
func (k *KeyTypeDesc) Array(key string) []string
type KeyTypeDescs ¶ added in v0.2.9
type KeyTypeDescs []*KeyTypeDesc
func (KeyTypeDescs) Array ¶ added in v0.2.9
func (k KeyTypeDescs) Array(key string) [][]string
func (KeyTypeDescs) Sort ¶ added in v0.2.9
func (k KeyTypeDescs) Sort() KeyTypeDescs
type Logger ¶ added in v0.2.35
type Logger = *zap.SugaredLogger
type Node ¶ added in v1.0.18
type OrderedMap ¶
func NewOrderedMap ¶
func NewOrderedMap[V any](lexical bool, capacity int) *OrderedMap[V]
func (*OrderedMap[V]) Append ¶
func (o *OrderedMap[V]) Append(k string, v V)
func (*OrderedMap[V]) Get ¶
func (o *OrderedMap[V]) Get(k string) (V, bool)
func (*OrderedMap[V]) GetSimple ¶
func (o *OrderedMap[V]) GetSimple(k string) V
func (OrderedMap[V]) MarshalJSON ¶
func (o OrderedMap[V]) MarshalJSON() ([]byte, error)
func (OrderedMap[V]) MarshalXML ¶
func (o OrderedMap[V]) MarshalXML(e *xml.Encoder, start xml.StartElement) error
func (OrderedMap[V]) MarshalYAML ¶
func (o OrderedMap[V]) MarshalYAML() (any, error)
func (*OrderedMap[V]) UnmarshalJSON ¶
func (o *OrderedMap[V]) UnmarshalJSON(b []byte) error
type StringSlice ¶ added in v1.1.1
type StringSlice struct {
Slice []string
}
func NewStringSlice ¶ added in v1.1.1
func NewStringSlice(a []string) *StringSlice
func (*StringSlice) Empty ¶ added in v1.1.1
func (s *StringSlice) Empty() bool
func (*StringSlice) Join ¶ added in v1.1.1
func (s *StringSlice) Join(x string) string
func (*StringSlice) Push ¶ added in v1.1.1
func (s *StringSlice) Push(strings ...string)
func (*StringSlice) Pushf ¶ added in v1.1.1
func (s *StringSlice) Pushf(msg string, args ...any)
func (*StringSlice) Sort ¶ added in v1.1.1
func (s *StringSlice) Sort()
type Timer ¶ added in v0.2.9
func TimerStart ¶
func TimerStart() *Timer
type Tree ¶ added in v1.0.18
type ValueMap ¶
func FromJSONMap ¶ added in v0.11.14
func FromJSONMap(msg json.RawMessage) (ValueMap, error)
func FromXMLMap ¶ added in v1.1.0
func RandomValueMap ¶
func ValueMapFor ¶
func (ValueMap) GetArrayOpt ¶ added in v1.0.7
func (ValueMap) GetBoolOpt ¶ added in v0.2.33
func (ValueMap) GetFloatArray ¶ added in v1.0.7
func (ValueMap) GetFloatOpt ¶ added in v1.0.7
func (ValueMap) GetIntArray ¶ added in v1.0.7
func (ValueMap) GetMapArray ¶ added in v1.0.7
func (ValueMap) GetStringArray ¶
func (ValueMap) GetStringArrayOpt ¶ added in v1.0.7
func (ValueMap) GetStringOpt ¶
func (ValueMap) GetStringPtr ¶ added in v0.8.23
func (ValueMap) KeysAndValues ¶
func (ValueMap) MarshalXML ¶
func (ValueMap) ParseArray ¶
func (ValueMap) ParseArrayFloat ¶ added in v1.0.7
func (ValueMap) ParseArrayInt ¶ added in v0.3.16
func (ValueMap) ParseArrayMap ¶ added in v1.0.7
func (ValueMap) ParseArrayString ¶ added in v0.3.16
func (ValueMap) ParseFloat ¶
func (ValueMap) ParseString ¶
func (ValueMap) ToQueryString ¶
func (ValueMap) ToStringMap ¶ added in v0.11.6
Source Files ¶
- acronym.go
- array.go
- async.go
- bool.go
- byte.go
- csv.go
- debug.go
- diff.go
- encryption.go
- env.go
- errors.go
- json.go
- keys.go
- keyval.go
- lines.go
- log.go
- map.go
- mapget.go
- mapordered.go
- mapparse.go
- mapparsearray.go
- mapparsemap.go
- mappath.go
- markdown.go
- numeric.go
- pkg.go
- plural.go
- process.go
- random.go
- string.go
- stringslice.go
- svg.go
- time.go
- timefmt.go
- timer.go
- tree.go
- uuid.go
- xml.go