Documentation ¶ Index ¶ func Concat(str ...string) string func IsASCII(s string) bool func Reverse(s string) string Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Concat ¶ func Concat(str ...string) string Concat is an efficient string builder function func IsASCII ¶ func IsASCII(s string) bool IsASCII checks if all characters in the string are ASCII characters Source: https://stackoverflow.com/a/53069799/5516320 func Reverse ¶ func Reverse(s string) string Reverse returns the inverted string of s. Implemented through slice inversion, directly inverting bytes for small strings. Using rune array inversion for large strings. Types ¶ This section is empty. Source Files ¶ View all Source files concat.goreverse.govalidate.go Click to show internal directories. Click to hide internal directories.