Constructors
Declared in <bdlar_arrayref.h>
Create ArrayConstRef object that wraps the same object as the specified object.
ArrayConstRef(ArrayRef const& object);
» more...
Create ArrayConstRef object. The behaviour is undefined unless objectAddress and vtable point to the valid objects.
ArrayConstRef(
void const* objectAddress,
ArrayConstVtable const* vtable);
» more...
Create ArrayConstRef object that type erases the supplied array object.
template<class t_ARRAY>
explicit
ArrayConstRef(
t_ARRAY const& array,
void* = 0)
requires IsArray<t_ARRAY>::value;
» more...