# Functions
Bracket adds brackets around the given string.
BracketWith adds brackets of a given type around the given string.
Functions that primarily operate on strings.
HasPrefix returns true if the supplied string has the given prefix.
HasSuffix returns true if the supplied string has the given suffix.
Indent prints the given string with the given number of spaces prepended before each line.
Newline prints a newline (handy for trying to format templates).
PadLeft prints the given string in the given number of columns, left aligned.
PadRight prints the given string in the given number of columns, right aligned.
Prefix prints the given string with the given number of 'prefix' prepended before each line.
QuoteBack adds back-quotes around the given string.
QuoteDouble adds double quote around the given string.
QuoteSingle adds single quote around the given string.
Rep repeats the given string(s) the given number of times.
Space prints a space character the given number of times.
SplitOn creates an array from the given string by separating it by the glue string.
Suffix prints the given string with the given number of 'suffix' appended to each line.
Tab prints a tab character the given number of times.
TabIndent prints the given string with the given number of spaces prepended before each line.
TitleCaseWithAbbr upper-cases the first letter of each word, or the whole word if it matches a given abbreviation.
ToColumn formats the given text to not take more than 'w' characters per line, splitting on the space before the word that would take the line over.
TrimPrefix removes the given prefix from the supplied string, or does nothing if the string doesn't have the prefix.
TrimSuffix removes the given suffix from the supplied string, or does nothing if the string doesn't have the suffix.
TypeKind returns the "kind" of the given value as a string.
TypeName returns the type of the given value as a string.
Unindent removes up to 'count' spaces from the start of all lines within 'content'.
UppercaseFirst converts the first character in a string to uppercase.