visit overloads
Declared in <bdlcc_stripedunorderedmultimap.h>
Call visitor on each element until every element is visited or it returns false.
int
visit(VisitorFunction const& visitor);
» more...
Call visitor on each element matching key until it returns false.
int
visit(
KEY const& key,
VisitorFunction const& visitor);
» more...
number of elements visited, or its negation if stopped early
| Name | Description |
|---|---|
| visitor | functor invoked with each element |
| key | key of the elements to visit |