8 template <
typename T,
typename defaultElemType = T>
class tarr:
public arr {
12 tarr(): super(defaultElemType().getOrigin()) {}
16 tarr(
const super& rhs): super(rhs) {}
Managed array container for byeol language.
Definition: arr.hpp:14
Base class for all objects in byeol language.
Definition: baseObj.hpp:24