PALISADE Lattice Crypto Library  1.11.9
A lattice crypto library for software engineers by software engineers.
xmap.h
1 // @file TODO
2 //
3 // @copyright Copyright (c) TODO
4 
5 #ifndef _XMAP_H
6 #define _XMAP_H
7 
8 #include <functional>
9 #include <map>
10 #include <utility>
11 
12 #include "stl_allocator.h"
13 
14 template <class _Kty, class _Ty, class _Pr = std::less<_Kty>,
15  class _Alloc = stl_allocator<std::pair<const _Kty, _Ty> > >
16 class xmap : public std::map<_Kty, _Ty, _Pr, _Alloc> {};
17 
18 template <class _Kty, class _Ty, class _Pr = std::less<_Kty>,
19  class _Alloc = stl_allocator<std::pair<const _Kty, _Ty> > >
20 class xmultimap : public std::multimap<_Kty, _Ty, _Pr, _Alloc> {};
21 
22 #endif
Definition: xmap.h:20
Definition: xmap.h:16