Documentation ¶
Overview ¶
Package streamquote implements a streaming version of strconv.Quote.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Converter ¶
type Converter interface { // Convert converts the data in "in", writing it to "out". // It uses Go escape sequences (\t, \n, \xFF, \u0100) for control characters // and non-printable characters as defined by strconv.IsPrint. // It is not safe for concurrent use. Convert(in io.Reader, out io.Writer) (int, error) }
Converter converts data by escaping control characters and non-printable characters using Go escape sequences.
Click to show internal directories.
Click to hide internal directories.