로딩중...
검색중...
일치하는것 없음
tndumChain.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
4#include "core/builtin/container/native/tnchain.inl"
5
6namespace by {
7
8 template <typename K, typename V, typename defaultContainer = nmap>
9 class tndumChain: public tnchain<K, V, defaultContainer> {
12
13 public:
14 tndumChain() {}
15
16 tndumChain(const super& rhs): super(rhs) {}
17
18 public:
19 using super::add;
20
21 nbool add(const K& key, const V& val) override { return false; }
22
23 using super::link;
24
25 nbool link(const typename super::iter& new1) override { return false; }
26
27 public:
28 static me singleton;
29 };
30
32}
Definition tnarr.hpp:9
Definition tnchain.hpp:11
Definition tndumChain.hpp:9
to Top