aboutsummaryrefslogblamecommitdiffstats
path: root/util/generic/map.h
blob: 13ff5cae7cf47aaa04a95b8f7cb5722b307b4fd8 (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();
    }
};

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();
    }
};