summaryrefslogtreecommitdiff
path: root/libcult/cult/containers/map.hxx
diff options
context:
space:
mode:
authorJörg Frings-Fürst <jff@merkur>2014-05-18 16:08:14 +0200
committerJörg Frings-Fürst <jff@merkur>2014-05-18 16:08:14 +0200
commita15cf65c44d5c224169c32ef5495b68c758134b7 (patch)
tree3419f58fc8e1b315ba8171910ee044c5d467c162 /libcult/cult/containers/map.hxx
Imported Upstream version 3.3.0.2upstream/3.3.0.2
Diffstat (limited to 'libcult/cult/containers/map.hxx')
-rw-r--r--libcult/cult/containers/map.hxx175
1 files changed, 175 insertions, 0 deletions
diff --git a/libcult/cult/containers/map.hxx b/libcult/cult/containers/map.hxx
new file mode 100644
index 0000000..8a3fbdb
--- /dev/null
+++ b/libcult/cult/containers/map.hxx
@@ -0,0 +1,175 @@
+// file : cult/containers/map.hxx
+// author : Boris Kolpackov <boris@kolpackov.net>
+// copyright : Copyright (c) 2005-2010 Boris Kolpackov
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef CULT_CONTAINERS_MAP_HXX
+#define CULT_CONTAINERS_MAP_HXX
+
+#include <cult/types.hxx>
+
+#include <cult/containers/iterator.hxx>
+
+#include <map>
+
+namespace Cult
+{
+ namespace Containers
+ {
+ template <typename K, typename T, typename C = std::less<K> >
+ class Map: public std::map<K, T, C>
+ {
+ typedef std::map<K, T, C> Base;
+
+ Base&
+ base ()
+ {
+ return *this;
+ }
+
+ Base const&
+ base () const
+ {
+ return *this;
+ }
+
+ public:
+ typedef typename Base::key_type Key;
+ typedef typename Base::mapped_type Value;
+ typedef typename Base::value_type Pair;
+ typedef typename Base::key_compare Compare;
+
+ typedef typename Base::reference Reference;
+ typedef typename Base::const_reference ConstReference;
+
+ typedef typename Base::pointer Pointer;
+ typedef typename Base::const_pointer ConstPointer;
+
+
+ typedef
+ IteratorAdapter<typename Base::iterator>
+ Iterator;
+
+ typedef
+ IteratorAdapter<typename Base::const_iterator>
+ ConstIterator;
+
+
+ typedef
+ IteratorAdapter<typename Base::reverse_iterator>
+ ReverseIterator;
+
+ typedef
+ IteratorAdapter<typename Base::const_reverse_iterator>
+ ConstReverseIterator;
+
+ // Use Cult::Size and Cult::PtrDifference.
+ //
+ // typedef Base::size_type;
+ // typedef Base::difference_type;
+
+ public:
+ explicit
+ Map (Compare const& comp = Compare ())
+ : Base (comp)
+ {
+ }
+
+ template <typename InputIterator>
+ Map (InputIterator first,
+ InputIterator last,
+ Compare const& comp = Compare ())
+ : Base (first, last, comp)
+ {
+ }
+
+ Map (Map<Key, Value, Compare> const& other)
+ : Base (other)
+ {
+ }
+
+ Map<Key, Value, Compare>&
+ operator= (Map<Key, Value, Compare> const& other)
+ {
+ base () = other;
+ return *this;
+ }
+
+ public:
+ Iterator
+ begin ()
+ {
+ return Iterator (base ().begin ());
+ }
+
+ Iterator
+ end ()
+ {
+ return Iterator (base ().end ());
+ }
+
+
+ ConstIterator
+ begin () const
+ {
+ return ConstIterator (base ().begin ());
+ }
+
+ ConstIterator
+ end () const
+ {
+ return ConstIterator (base ().end ());
+ }
+
+ //
+ //
+
+ ReverseIterator
+ rbegin ()
+ {
+ return ReverseIterator (base ().rbegin ());
+ }
+
+ ReverseIterator
+ rend ()
+ {
+ return ReverseIterator (base ().rend ());
+ }
+
+
+ ConstReverseIterator
+ rbegin () const
+ {
+ return ConstReverseIterator (base ().rbegin ());
+ }
+
+ ConstReverseIterator
+ rend () const
+ {
+ return ConstReverseIterator (base ().rend ());
+ }
+
+ public:
+ Iterator
+ find (Key const& k)
+ {
+ return Iterator (base ().find (k));
+ }
+
+ ConstIterator
+ find (Key const& k) const
+ {
+ return ConstIterator (base ().find (k));
+ }
+
+ public:
+ Void
+ swap (Map<Key, Value, Compare>& other)
+ {
+ base ().swap (other);
+ }
+ };
+ }
+}
+
+#endif // CULT_CONTAINERS_MAP_HXX