absl::btree_map::operator[]

Subscript operators

Synopses

Declared in <absl/container/btree_map.h>

template<
    class K = key_type,
    int = EnableIf<LifetimeBoundK<K, false>>()>
mapped_type&
operator[](key_arg<K> const& k);
» more...
template<
    class K = key_type,
    int = EnableIf<LifetimeBoundK<K, false>>()>
mapped_type&
operator[](key_arg<K>&& k);
» more...
template<
    class K = key_type,
    int&...,
    EnableIf<LifetimeBoundK<K, true>> = 0>
mapped_type&
operator[](key_arg<K> const& k);
» more...
template<
    class K = key_type,
    int&...,
    EnableIf<LifetimeBoundK<K, true>> = 0>
mapped_type&
operator[](key_arg<K>&& k);
» more...