Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 1018 Bytes

ArrayDesc.md

File metadata and controls

46 lines (27 loc) · 1018 Bytes

ArrayDesc

class ArrayDesc

Inherited from: ValueDesc.

Required header: <Eclog/ArrayDesc.h>

The ArrayDesc class is a description of an array.

Member functions

Name Description
(constructor) 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.

Parameters

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.