Loading...
Searching...
No Matches
tarr.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
7
8 template <typename T, typename defaultElemType = T> class tarr: public arr {
9 BY(ME(tarr, arr), INIT_META(tarr), CLONE(tarr))
10
11 public:
12 tarr(): super(defaultElemType().getOrigin()) {}
13
14 tarr(const baseObj& elemType): super(elemType) {}
15
16 tarr(const super& rhs): super(rhs) {}
17 };
18}
Scripted array container for byeol language.
Definition arr.hpp:15
Base class for representing byeol objects.
Definition baseObj.hpp:73
Definition tarr.hpp:8
Definition tnarr.hpp:9
to Top