TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ find() [1/2]

template<class Key , class T , class IgnoredLess = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
iterator nlohmann::ordered_map< Key, T, IgnoredLess, Allocator >::find ( const Key &  key)
inline

Definition at line 17700 of file json.hpp.

17701 {
17702 for (auto it = this->begin(); it != this->end(); ++it)
17703 {
17704 if (it->first == key)
17705 {
17706 return it;
17707 }
17708 }
17709
17710 return Container::end();
17711 }