Dendro  5.01
Dendro in Greek language means tree. The Dendro library is a large scale (262K cores on ORNL's Titan) distributed memory adaptive octree framework. The main goal of Dendro is to perform large scale multiphysics simulations efficeiently in mordern supercomputers. Dendro consists of efficient parallel data structures and algorithms to perform variational ( finite element) methods and finite difference mthods on 2:1 balanced arbitary adaptive octrees which enables the users to perform simulations raning from black holes (binary black hole mergers) to blood flow in human body, where applications ranging from relativity, astrophysics to biomedical engineering.
Static Public Member Functions | List of all members
nlohmann::adl_serializer< typename, typename > Struct Template Reference

default JSONSerializer template argument More...

#include <json.hpp>

Static Public Member Functions

template<typename BasicJsonType , typename ValueType >
static void from_json (BasicJsonType &&j, ValueType &val) noexcept(noexcept(::nlohmann::from_json(std::forward< BasicJsonType >(j), val)))
 convert a JSON value to any value type More...
 
template<typename BasicJsonType , typename ValueType >
static void to_json (BasicJsonType &j, ValueType &&val) noexcept(noexcept(::nlohmann::to_json(j, std::forward< ValueType >(val))))
 convert any value type to a JSON value More...
 

Detailed Description

template<typename, typename>
struct nlohmann::adl_serializer< typename, typename >

default JSONSerializer template argument

This serializer ignores the template arguments and uses ADL (argument-dependent lookup) for serialization.

Member Function Documentation

◆ from_json()

template<typename , typename >
template<typename BasicJsonType , typename ValueType >
static void nlohmann::adl_serializer< typename, typename >::from_json ( BasicJsonType &&  j,
ValueType &  val 
)
inlinestaticnoexcept

convert a JSON value to any value type

This function is usually called by the get() function of the basic_json class (either explicit or via conversion operators).

Parameters
[in]jJSON value to read from
[in,out]valvalue to write to

◆ to_json()

template<typename , typename >
template<typename BasicJsonType , typename ValueType >
static void nlohmann::adl_serializer< typename, typename >::to_json ( BasicJsonType &  j,
ValueType &&  val 
)
inlinestaticnoexcept

convert any value type to a JSON value

This function is usually called by the constructors of the basic_json class.

Parameters
[in,out]jJSON value to write to
[in]valvalue to read from

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