class ArrayDesc
Inherited from: ValueDesc.
Required header: <Eclog/ArrayDesc.h>
The ArrayDesc class is a description of an array.
Name | Description |
---|---|
(constructor) | Constructor. |
ArrayDesc(EmptyArrayTag); (1)
ArrayDesc(const ValueDesc* p, size_t size); (2)
template<size_t N>
ArrayDesc(const ValueDesc(&v)[N]); (3)
Constructs an ArrayDesc.
(1) Constructs the value description for an empty array.
(2-3) Constructs the value description for an array.
EmptyArrayTag Tag dispatching.
const
ValueDesc*
p Pointer to an array of value descriptions.
const
ValueDesc(&
v)[N]
An array of value descriptions.
size_t
size Size of the description array.