TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ find() [2/2]

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

Definition at line 17713 of file json.hpp.

17714 {
17715 for (auto it = this->begin(); it != this->end(); ++it)
17716 {
17717 if (it->first == key)
17718 {
17719 return it;
17720 }
17721 }
17722
17723 return Container::end();
17724 }