로딩중...
검색중...
일치하는것 없음
tndumArr.hpp
이 파일의 문서화 페이지로 가기
1
2
#pragma once
3
4
#include "core/builtin/container/native/tnarr.inl"
5
6
namespace
by {
7
8
template
<
typename
T,
typename
TACTIC = strTactic>
class
tndumArr
:
public
tnarr
<T, TACTIC> {
9
typedef
tnarr<T, TACTIC>
_super_
;
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
29
typedef
tndumArr<node, strTactic>
ndumArr
;
30
}
by::node
Base class for all AST nodes in the byeol language
Definition
node.hpp:195
by::tnarr
Definition
tnarr.hpp:9
by::tndumArr
Definition
tndumArr.hpp:8
to Top