supercell-wx/wxdata/include/scwx/util/map.hpp
2022-05-22 08:48:40 -05:00

41 lines
881 B
C++

#pragma once
#include <map>
#include <optional>
namespace scwx
{
namespace util
{
template<class Key, class T>
std::optional<T> GetBoundedElement(std::map<Key, T>& map, Key key)
{
std::optional<T> element = std::nullopt;
// Find the first element greater than the key requested
auto it = map.upper_bound(key);
// An element with a key greater was found
if (it != map.cend())
{
// Are there elements prior to this element?
if (it != map.cbegin())
{
// Get the element immediately preceding, this the element we are
// looking for
element = (--it)->second;
}
}
else if (map.size() > 0)
{
// An element with a key greater was not found. If it exists, it must be
// the last element.
element = map.rbegin()->second;
}
return element;
}
} // namespace util
} // namespace scwx