Aspose::Cells::Vector::Vector constructor

Vector::Vector(int32_t) constructor

Constructs an element Vector of the specified length.

Aspose::Cells::Vector<T>::Vector(int32_t len)
ParameterTypeDescription
lenint32_t

ReturnValue

See Also

Vector::Vector(const T*, int32_t) constructor

Constructs from an element array. All elements will be copied.

Aspose::Cells::Vector<T>::Vector(const T *data, int32_t len)
ParameterTypeDescription
dataconst T*The element array pointer
lenint32_tThe length of the array

ReturnValue

See Also

Vector::Vector(std::initializer_list<T>) constructor

Constructs using initialization list.

Aspose::Cells::Vector<T>::Vector(std::initializer_list<T> init)

See Also

Vector::Vector(const Vector&) constructor

Copy constructor.

Aspose::Cells::Vector<T>::Vector(const Vector &src)

See Also