aboutsummaryrefslogblamecommitdiffstats
path: root/util/generic/map.h
blob: b5001b56c03a50b00398f045a4191f2d03f4abcd (plain) (tree)
1
2
3
4
5
6
7
8
9
            
 
                
                       
 
                         
                              
 
                  
                           
              
                 
 
                                                
                                                                                                                           
                                                                                    
       
                       
 


                                                    

                                              
  
                                                
                                                                                                
                                                                                         
       
                       
 

                                                    
 

                                              
  
#pragma once

#include "fwd.h"
#include "mapfindptr.h"

#include <util/str_stl.h>
#include <util/memory/alloc.h>

#include <utility>
#include <initializer_list>
#include <map>
#include <memory>

template <class K, class V, class Less, class A>
class TMap: public std::map<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>>, public TMapOps<TMap<K, V, Less, A>> {
    using TBase = std::map<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>>;

public:
    using TBase::TBase;

    inline explicit operator bool() const noexcept {
        return !this->empty();
    }

    inline bool contains(const K& key) const {
        return this->find(key) != this->end();
    }
};

template <class K, class V, class Less, class A>
class TMultiMap: public std::multimap<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>> {
    using TBase = std::multimap<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>>;

public:
    using TBase::TBase;

    inline explicit operator bool() const noexcept {
        return !this->empty();
    }

    inline bool contains(const K& key) const {
        return this->find(key) != this->end();
    }
};