BloombergLP::bdlar::SequenceConstRef::SequenceConstRef

Constructors

Synopses

Declared in <bdlar_sequenceref.h>

Create SequenceConstRef object that wraps the same object as the specified object.

SequenceConstRef(SequenceRef const& object);
» more...

Create SequenceConstRef object. The behaviour is undefined unless objectAddress and vtable point to the valid objects.

SequenceConstRef(
    void const* objectAddress,
    SequenceConstVtable const* vtable);
» more...

Create SequenceConstRef object that type erases the supplied sequence object.

template<class t_SEQUENCE>
explicit
SequenceConstRef(
    t_SEQUENCE const& sequence,
    void* = 0)
requires IsSequence<t_SEQUENCE>::value;
» more...