2022-04-10 00:17:06 +00:00
|
|
|
#ifndef _RSTL_MAP_HPP
|
|
|
|
#define _RSTL_MAP_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2022-10-03 04:49:11 +00:00
|
|
|
#include "rstl/pair.hpp"
|
2022-08-14 18:38:41 +00:00
|
|
|
#include "rstl/red_black_tree.hpp"
|
2022-08-09 23:03:51 +00:00
|
|
|
#include "rstl/rmemory_allocator.hpp"
|
2022-04-10 00:17:06 +00:00
|
|
|
|
|
|
|
namespace rstl {
|
2022-08-13 02:48:34 +00:00
|
|
|
template < typename K, typename V, typename Cmp = less< K >, typename Alloc = rmemory_allocator >
|
2022-04-10 00:17:06 +00:00
|
|
|
class map {
|
2022-10-03 04:49:11 +00:00
|
|
|
public:
|
|
|
|
typedef pair< K, V > value_type;
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef red_black_tree< K, value_type, 1, select1st< value_type >, Cmp, Alloc > rep_type;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef pair< K, V > value_type;
|
|
|
|
// typedef typename rep_type::iterator iterator;
|
|
|
|
typedef typename rep_type::const_iterator const_iterator;
|
|
|
|
|
|
|
|
private:
|
|
|
|
rep_type inner;
|
2022-04-10 00:17:06 +00:00
|
|
|
};
|
2022-10-03 04:49:11 +00:00
|
|
|
|
|
|
|
typedef map< char, char > unk_map;
|
|
|
|
CHECK_SIZEOF(unk_map, 0x14)
|
2022-04-10 00:17:06 +00:00
|
|
|
} // namespace rstl
|
|
|
|
|
|
|
|
#endif
|