Fast Methods for Cosmological Simulations
FastSim serves as a tool for quick N-body simulations in modified gravity.
nlohmann::detail::json_sax_acceptor< BasicJsonType > Class Template Reference

#include <json.hpp>

Public Types

using number_integer_t = typename BasicJsonType::number_integer_t
 
using number_unsigned_t = typename BasicJsonType::number_unsigned_t
 
using number_float_t = typename BasicJsonType::number_float_t
 
using string_t = typename BasicJsonType::string_t
 

Public Member Functions

bool null ()
 
bool boolean (bool)
 
bool number_integer (number_integer_t)
 
bool number_unsigned (number_unsigned_t)
 
bool number_float (number_float_t, const string_t &)
 
bool string (string_t &)
 
bool start_object (std::size_t=std::size_t(-1))
 
bool key (string_t &)
 
bool end_object ()
 
bool start_array (std::size_t=std::size_t(-1))
 
bool end_array ()
 
bool parse_error (std::size_t, const std::string &, const detail::exception &)
 

Detailed Description

template<typename BasicJsonType>
class nlohmann::detail::json_sax_acceptor< BasicJsonType >

Definition at line 4748 of file json.hpp.

Member Typedef Documentation

template<typename BasicJsonType>
using nlohmann::detail::json_sax_acceptor< BasicJsonType >::number_float_t = typename BasicJsonType::number_float_t

Definition at line 4753 of file json.hpp.

template<typename BasicJsonType>
using nlohmann::detail::json_sax_acceptor< BasicJsonType >::number_integer_t = typename BasicJsonType::number_integer_t

Definition at line 4751 of file json.hpp.

template<typename BasicJsonType>
using nlohmann::detail::json_sax_acceptor< BasicJsonType >::number_unsigned_t = typename BasicJsonType::number_unsigned_t

Definition at line 4752 of file json.hpp.

template<typename BasicJsonType>
using nlohmann::detail::json_sax_acceptor< BasicJsonType >::string_t = typename BasicJsonType::string_t

Definition at line 4754 of file json.hpp.

Member Function Documentation

template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::boolean ( bool  )
inline

Definition at line 4761 of file json.hpp.

4762  {
4763  return true;
4764  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::end_array ( )
inline

Definition at line 4806 of file json.hpp.

4807  {
4808  return true;
4809  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::end_object ( )
inline

Definition at line 4796 of file json.hpp.

4797  {
4798  return true;
4799  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::key ( string_t )
inline

Definition at line 4791 of file json.hpp.

4792  {
4793  return true;
4794  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::null ( )
inline

Definition at line 4756 of file json.hpp.

4757  {
4758  return true;
4759  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::number_float ( number_float_t  ,
const string_t  
)
inline

Definition at line 4776 of file json.hpp.

4777  {
4778  return true;
4779  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::number_integer ( number_integer_t  )
inline

Definition at line 4766 of file json.hpp.

4767  {
4768  return true;
4769  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::number_unsigned ( number_unsigned_t  )
inline

Definition at line 4771 of file json.hpp.

4772  {
4773  return true;
4774  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::parse_error ( std::size_t  ,
const std::string ,
const detail::exception  
)
inline

Definition at line 4811 of file json.hpp.

4812  {
4813  return false;
4814  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::start_array ( std::size_t  = std::size_t(-1))
inline

Definition at line 4801 of file json.hpp.

4802  {
4803  return true;
4804  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::start_object ( std::size_t  = std::size_t(-1))
inline

Definition at line 4786 of file json.hpp.

4787  {
4788  return true;
4789  }
template<typename BasicJsonType>
bool nlohmann::detail::json_sax_acceptor< BasicJsonType >::string ( string_t )
inline

Definition at line 4781 of file json.hpp.

4782  {
4783  return true;
4784  }

The documentation for this class was generated from the following file: