Write the specified enumeration value to the specified output stream.
Declared in <baljsn_jsontokenizer.h>
std::ostream&
operator<<(
std::ostream& stream,
JsonTokenizer::TokenType value);
Write the string representation of the specified enumeration value to the specified output stream in a single-line format, and return a reference to stream. See toAscii for what constitutes the string representation of a baljsn::JsonTokenizer::TokenType value. Note that this method has the same behavior as ` baljsn::JsonTokenizer::print(stream, value, 0, -1); `
a reference to stream
| Name | Description |
|---|---|
| stream | output stream |
| value | enumeration value to format |