Constructors
Declared in <bsltf_testvaluesarray.h>
Create a null-initialized iterator.
TestValuesArrayIterator();
» more...
Create an iterator having the same value as the specified original object. The behavior is undefined unless original is valid.
TestValuesArrayIterator(TestValuesArrayIterator const& original);
» more...
Create an iterator referring to object within [object, end)].
TestValuesArrayIterator(
VALUE const* object,
VALUE const* end,
bool* dereferenceable,
bool* isValid);
» more...
| Name | Description |
|---|---|
| original | iterator to copy |
| object | address of the current element |
| end | address of the past-the-end element |
| dereferenceable | array indicating dereferenceability per element |
| isValid | array indicating validity per element |