# Functions
CueEvaluatingJsonValue - Simple func to build json from a CueLang definition Parameters: - schemaName: Main cue schema name to eval - cueDef: Cue document, contains Cue definitions - jsonValue: Use to as Cue values for evaluating.
CueValidateJson - Simple func to validate json by cue definitions Parameters: - schemaName: Main cue schema name to eval - cueDef: Cue document, contains Cue definitions - jsonBytes: Use to as Cue values for evaluating.
Becareful with json ommitempty options.
No description provided by the author
No description provided by the author
GenerateRandomString returns a URL-safe, base64 encoded securely generated random string.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
GetMD5Hash -- get md5 hash from a string.
No description provided by the author
GetSHA256Hash -- get sha_256 hash from a string.
GetSHA512Hash -- get sha_512 hash from a string.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
IsStringSliceCaseInsensitiveContains -- check slice contain string.
LcFirst Lower case first char.
NewAccessForbiddenError creates a new error response representing an authorization failure (HTTP 403).
NewError creates a new error response.
NewNotFoundError creates a new error response representing a resource-not-found error (HTTP 404).
NewValidationError creates a new error response representing a data validation error (HTTP 400).
RemoveStringSliceContains -- check slice contain string and remove.
StringSlice -- slice string by separate.
ToCamel Converts a string to CamelCase.
ToCamelInitCaseKeepAll Converts a string to CamelCase.
ToDelimited Converts a string to delimited.snake.case (in this case `del = '.'`).
ToKebab Converts a string to kebab-case.
ToLowerCamel Converts a string to lowerCamelCase.
ToScreamingDelimited Converts a string to SCREAMING.DELIMITED.SNAKE.CASE (in this case `del = '.'; screaming = true`) or delimited.snake.case (in this case `del = '.'; screaming = false`).
ToScreamingKebab Converts a string to SCREAMING-KEBAB-CASE.
ToScreamingSnake Converts a string to SCREAMING_SNAKE_CASE.
ToSnake Converts a string to snake_case.
UcFirst Upper case first character.