# Functions
Contains returns true if the value is contained in the string list.
EmptyIfNil returns an empty string if the provided *string is nil, or else the value the provided pointer points to.
HasPrefix tests whether the string s begins with prefix.
NilIfEmpty returns nil if the provided string is empty, or else a pointer to the provided string.
NilPointersArrayIfEmpty returns nil if the provided []*string array is empty, or the provided array otherwise.
NilPointersMapIfEmpty returns nil if the provided map[string]*string is empty, or the provided map otherwise.
Pointer returns a pointer to the provided string.
ToPointersArray converts the provided []string into a []*string.
ToPointersMap converts the provided map[string]string into a map[string]*string.
ToValuesArray converts the provided []*string into a []string.
ToValuesMap converts the provided map[string]*string into a map[string]string.
Value returns the value of a pointer, empty string if it's nil.