로딩중...
검색중...
일치하는것 없음
tndumArr.hpp
이 파일의 문서화 페이지로 가기
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> {
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 the byeol language
Definition node.hpp:195
Definition tnarr.hpp:9
Definition tndumArr.hpp:8
to Top