TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ insert() [2/3]

template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
template<typename InputIt , typename = require_input_iter<InputIt>>
void nlohmann::ordered_map< Key, T, IgnoredLess, Allocator >::insert ( InputIt  first,
InputIt  last 
)
inline

Definition at line 17750 of file json.hpp.

17751 {
17752 for (auto it = first; it != last; ++it)
17753 {
17754 insert(*it);
17755 }
17756 }