TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ write_bson_double()

template<typename BasicJsonType , typename CharType >
void nlohmann::detail::binary_writer< BasicJsonType, CharType >::write_bson_double ( const string_t &  name,
const double  value 
)
inlineprivate

Writes a BSON element with key name and double value value.

Definition at line 14825 of file json.hpp.

14827 {
14828 write_bson_entry_header(name, 0x01);
14829 write_number<double, true>(value);
14830 }
void write_bson_entry_header(const string_t &name, const std::uint8_t element_type)
Writes the given element_type and name to the output adapter.
Definition: json.hpp:14803