Constructors
Declared in <bdlar_sequenceref.h>
Create SequenceRef object. The behaviour is undefined unless objectAddress and vtable point to the valid objects.
SequenceRef(
void* objectAddress,
SequenceVtable const* vtable);
» more...
Create SequenceRef object that type erases the supplied sequence object.
template<class t_SEQUENCE>
explicit
SequenceRef(
t_SEQUENCE& sequence,
void* = 0)
requires IsSequence<t_SEQUENCE>::value;
» more...