Flow 1.0.2
Flow project: Full implementation reference.
Classes | Namespaces | Functions
linked_hash_map.hpp File Reference
#include "flow/util/util_fwd.hpp"
#include <cstddef>
#include <boost/unordered_map.hpp>
#include <boost/move/unique_ptr.hpp>

Go to the source code of this file.

Classes

class  flow::util::Linked_hash_map< Key, Mapped, Hash, Pred >
 An object of this class is a map that combines the lookup speed of a boost::unordered_map<> and ordering and iterator stability capabilities of an std::list<>. More...
 

Namespaces

namespace  flow
 Catch-all namespace for the Flow project: A collection of various production-quality modules written in modern C++17, originally by ygoldfel.
 
namespace  flow::util
 Flow module containing miscellaneous general-use facilities that don't fit into any other Flow module.
 

Functions

template<typename Key , typename Mapped , typename Hash , typename Pred >
void flow::util::swap (Linked_hash_map< Key, Mapped, Hash, Pred > &val1, Linked_hash_map< Key, Mapped, Hash, Pred > &val2)
 Equivalent to val1.swap(val2). More...