# Functions

No description provided by the author
NewIterator returns a new JSON Lines (aka jsonl) Iterator base on the given input.
NewWriter returns a writer for formating and writing objets to the underlying writer as JSON Lines (aka jsonl).
Read reads the json lines from the input reader of the type given.
Write writes the given object(s) as JSON Lines (aka jsonl).

# Variables

No description provided by the author
No description provided by the author

# Structs

Iterator iterates trough a stream of bytes returning a new object on each call of Next() until it reaches the end and returns io.EOF.
Input for NewIterator function.
ReadInput provides the input for the Read function.
WriteInput provides the input for the Write function.
Writer formats and writes objects to the underlying writer as JSON Lines (aka jsonl).

# Interfaces

Flusher interfaces is a simple interface that wraps the Flush() function.
WriterFlusher is a simple interface that wraps io.Writer and Flusher.