BloombergLP::bdlf::Bind_BoundTupleValue::Bind_BoundTupleValue

Constructors

Synopses

Declared in <bdlf_bind.h>

Create a value holding the moved contents of the specified value.

Bind_BoundTupleValue(
    bslmf::MovableRef<TYPE> value,
    bslma::Allocator* basicAllocator);
» more...

Create a value holding the moved contents of the specified original.

Bind_BoundTupleValue(
    bslmf::MovableRef<Bind_BoundTupleValue<TYPE>> original,
    bslma::Allocator* basicAllocator);
» more...

Create a value holding a copy of the specified value.

Bind_BoundTupleValue(
    TYPE const& value,
    bslma::Allocator* basicAllocator);
» more...

Create a value holding a copy of the specified original.

Bind_BoundTupleValue(
    Bind_BoundTupleValue<TYPE> const& original,
    bslma::Allocator* basicAllocator);
» more...

Parameters

NameDescription
valuevalue to move from
basicAllocatormemory allocator; null uses the default
originalvalue to move from