Constructors
Declared in <bdlb_transformiterator.h>
Create a TransformIterator object whose underlying iterator and functor have default values. Optionally specify a basicAllocator used to supply memory. If basicAllocator is 0, the currently installed default allocator is used.
TransformIterator();
» more...
explicit
TransformIterator(bslma::Allocator* basicAllocator);
» more...
Create a TransformIterator object having the same value as the specified original object. Optionally specify a basicAllocator used to supply memory. If basicAllocator is 0, the currently installed default allocator is used.
TransformIterator(
TransformIterator const& original,
bslma::Allocator* basicAllocator = 0);
» more...
Create a TransformIterator object using the specified iterator and functor. Optionally specify a basicAllocator used to supply memory. If basicAllocator is 0, the currently installed default allocator is used.
TransformIterator(
ITERATOR const& iterator,
FUNCTOR functor,
bslma::Allocator* basicAllocator = 0);
» more...