# Functions
AddHeader creates the given set of headers if needed, and then adds the given header:.
No description provided by the author
AddValue creates the given set of query parameters if needed, an then adds the given parameter.
CopyHeader creates a copy of the given set of headers.
CopyQuery creates a copy of the given set of query parameters.
CopyValues copies a slice of strings.
NewBoolean allocates a new bool in the heap and returns a pointer to it.
NewDate allocates a new date in the heap and returns a pointer to it.
NewFloat allocates a new floating point value in the heap and returns an pointer to it.
NewInteger allocates a new integer in the heap and returns a pointer to it.
NewIterator creates a new JSON iterator that will read to the given source, which can be a slice of bytes, a string, a reader or an existing iterator.
NewStream creates a new JSON stream that will write to the given writer.
NewString allocates a new string in the heap and returns a pointer to it.
ParseBoolean reads a string and parses it to boolean, if an error occurred it returns a non-nil error.
ParseDate reads a string and parses it to a time.Time, if an error occurred it returns a non-nil error.
ParseFloat reads a string and parses it to float, if an error occurred it returns a non-nil error.
ParseInteger reads a string and parses it to integer, if an error occurred it returns a non-nil error.
ParseString returns a pointer to the string and nil error.
PollContext repeatedly executes a task till it returns one of the given statuses and till the result satisfies all the given predicates.
Segments calculates the path segments for the given path.