Giri's C++ Support Library
C++ library providing everything you need to quickly create awesome applications.
giri::json::parsers Namespace Reference

Collection of functions used to parse json strings and json substrings. More...

Functions

JSON parse_next (const std::string &, size_t &, std::error_code &) noexcept
 
void consume_ws (const std::string &str, size_t &offset)
 
JSON parse_object (const std::string &str, size_t &offset, std::error_code &ec) noexcept
 
JSON parse_array (const std::string &str, size_t &offset, std::error_code &ec) noexcept
 
JSON parse_string (const std::string &str, size_t &offset, std::error_code &ec) noexcept
 
JSON parse_number (const std::string &str, size_t &offset, std::error_code &ec) noexcept
 
JSON parse_bool (const std::string &str, size_t &offset, std::error_code &ec) noexcept
 
JSON parse_null (const std::string &str, size_t &offset, std::error_code &ec) noexcept
 

Detailed Description

Collection of functions used to parse json strings and json substrings.