Constructors
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...
| Name | Description |
|---|---|
| value | value to move from |
| basicAllocator | memory allocator; null uses the default |
| original | value to move from |