tndumArr.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "core/builtin/container/native/tnarr.inl"
5
6namespace by {
7
8 template <typename T, typename TACTIC = strTactic> class tndumArr: public tnarr<T, TACTIC> {
10 BY(CLASS(tndumArr, _super_))
11
12 public:
13 tndumArr() {}
14
15 tndumArr(const super& rhs): super(rhs) {}
16
17 public:
18 // add:
19 using super::add;
20
21 nbool add(const typename super::iter& e, const node& new1) override { return false; }
22
23 nbool add(nidx n, const node& new1) override { return false; }
24
25 public:
26 static me singleton;
27 };
28
30}
Base class for all AST nodes in byeol language.
Definition: node.hpp:30
Definition: tnarr.hpp:9
Definition: tndumArr.hpp:8