FastLED 3.9.15
Loading...
Searching...
No Matches

◆ front() [1/2]

template<typename Key, typename Value, typename Less = fl::less<Key>>
const value_type & fl::flat_map< Key, Value, Less >::front ( ) const
inline

Definition at line 395 of file flat_map.h.

395 {
396 FASTLED_ASSERT(!empty(), "flat_map::front() on empty map");
397 return mData.front();
398 }
vector_type mData
Definition flat_map.h:51
bool empty() const FL_NOEXCEPT
Definition flat_map.h:97