Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Parser ¶
type Parser interface {
// Parse accepts a reader and parses the data it returns, returning an
// error if parsing fails.
//
// Implementations must not retain r. Implementations should not retain
// any parsed data if returning an error.
Parse(r io.Reader) (interface{}, error)
}
Parser is the interface that wraps the standard Parse method.
Click to show internal directories.
Click to hide internal directories.