Loading...
Searching...
No Matches
tndumMap.hpp
Go to the documentation of this file.
1
2
#pragma once
3
4
#include "core/builtin/container/native/tnmap.inl"
5
6
namespace
by {
7
8
template
<
typename
K,
typename
V,
typename
TACTIC = strTactic>
class
tndumMap
:
public
tnmap
<K, V, TACTIC> {
9
typedef
tnmap<K, V, TACTIC>
_super_
;
10
BY(
CLASS
(
tndumMap
,
_super_
))
11
12
public
:
13
tndumMap
() {}
14
15
tndumMap
(
const
super& rhs): super(rhs) {}
// initialization is allowed.
16
17
public
:
18
using
super::add;
19
20
nbool
add(
const
K
& key,
const
V
&
val
)
override
{
return
false
; }
21
22
public
:
23
static
me singleton;
24
};
25
26
typedef
tndumMap<std::string, node>
ndumMap
;
27
}
by::tnarr
Definition
tnarr.hpp:9
by::tndumMap
Definition
tndumMap.hpp:8
by::tnmap
Definition
tnmap.hpp:11
to Top