package
0.0.1
Repository: https://github.com/conflowio/conflow.git
Documentation: pkg.go.dev

# Functions

Contains reports whether substr is within s.
Format formats according to a format specifier and returns the resulting string.
HasPrefix tests whether the string s begins with prefix.
HasSuffix tests whether the string s ends with suffix.
Join concatenates the elements of a to create a single string.
Lower returns a copy of the string s with all Unicode letters mapped to their lower case.
Replace returns a copy of the string s with all non-overlapping instances of old replaced by new.
Split slices s into all substrings separated by sep and returns a slice of the substrings between those separators.
Title returns a copy of the string s with all Unicode letters that begin words mapped to their title case.
TrimPrefix returns s without the provided leading prefix string.
TrimSpace returns a slice of the string s, with all leading and trailing white space removed, as defined by Unicode.
TrimSuffix returns s without the provided trailing suffix string.
Upper returns a copy of the string s with all Unicode letters mapped to their upper case.

# Structs

ContainsInterpreter is the Conflow interpreter for the Contains function.
FormatInterpreter is the Conflow interpreter for the Format function.
HasPrefixInterpreter is the Conflow interpreter for the HasPrefix function.
HasSuffixInterpreter is the Conflow interpreter for the HasSuffix function.
JoinInterpreter is the Conflow interpreter for the Join function.
LowerInterpreter is the Conflow interpreter for the Lower function.
ReplaceInterpreter is the Conflow interpreter for the Replace function.
SplitInterpreter is the Conflow interpreter for the Split function.
TitleInterpreter is the Conflow interpreter for the Title function.
TrimPrefixInterpreter is the Conflow interpreter for the TrimPrefix function.
TrimSpaceInterpreter is the Conflow interpreter for the TrimSpace function.
TrimSuffixInterpreter is the Conflow interpreter for the TrimSuffix function.
UpperInterpreter is the Conflow interpreter for the Upper function.