#include "genesis/utils/io/parser.hpp"
#include "genesis/utils/io/scanner.hpp"
#include "genesis/utils/text/char.hpp"
#include "genesis/utils/text/string.hpp"
#include <algorithm>
#include <cassert>
#include <cctype>
#include <limits>
#include <stdexcept>
Go to the source code of this file.
Namespaces | |
genesis | |
Container namespace for all symbols of genesis in order to keep them separate when used as a library. | |
genesis::utils | |
Functions | |
std::string | parse_number_string (utils::InputStream &source) |
Read a general number string from an input stream. More... | |
std::string | parse_quoted_string (utils::InputStream &source, bool use_escapes=true, bool use_twin_quotes=false, bool include_qmarks=false) |
Read a string in quotation marks from a stream and return it. More... | |
size_t | parse_unsigned_integer_naive_ (utils::InputStream &source) |
Naive parsing that simply loops over chars. More... | |
size_t | parse_unsigned_integer_size_t (utils::InputStream &source) |
Parse the input source as an unsigned int into a size_t. More... | |