//! Constants used throughout the library.
/// Markers that indicate the start of a JSON structure
pubconstMARKERS:[char;2]=['{','['];/// All paired markers (opening and closing) used in JSON structures
pubconstPAIRED_MARKERS:[char;4]=['{','}','[',']'];