nlohmann::ordered_map::operator[]

Subscript operators

Synopses

Declared in <nlohmann/ordered_map.hpp>
T&
operator[](key_type const& key);


» more...
T const&
operator[](key_type const& key) const;


» more...
template<class KeyType>
requires detail::is_usable_as_key_type<key_compare, key_type, KeyType>::value
T const&
operator[](KeyType&& key) const;


» more...
template<class KeyType>
requires detail::is_usable_as_key_type<key_compare, key_type, KeyType>::value
T&
operator[](KeyType&& key);


» more...

Created with MrDocs