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
6namespace by {
7
8 template <typename K, typename V, typename TACTIC = strTactic> class tndumMap: public tnmap<K, V, TACTIC> {
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
27}
Definition tnarr.hpp:9
Definition tndumMap.hpp:8
Definition tnmap.hpp:11
to Top