MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / operator++

Method operator++

tests/gtest/gtest.h:10537–10541  ·  view source on GitHub ↗

Postfix version of operator++.

Source from the content-addressed store, hash-verified

10535 }
10536 // Postfix version of operator++.
10537 ParamIterator operator++(int /*unused*/) {
10538 ParamIteratorInterface<T>* clone = impl_->Clone();
10539 impl_->Advance();
10540 return ParamIterator(clone);
10541 }
10542 bool operator==(const ParamIterator& other) const {
10543 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);
10544 }

Callers

nothing calls this directly

Calls 3

ParamIteratorClass · 0.85
CloneMethod · 0.45
AdvanceMethod · 0.45

Tested by

no test coverage detected