|
lsst.afw g3a5ebb7d8a+28b83bf6a5
|
An ImageBase iterator. More...
Public Member Functions | |
| Image::Pixel & | operator* () |
| Dereference an iterator, returning a reference to a Pixel. | |
| void | operator++ () |
| Advance an iterator (prefix). | |
| void | operator++ (int) |
| Advance an iterator (postfix). | |
| void | operator+= (std::ptrdiff_t delta) |
| Increment the iterator by delta. | |
| void | operator-= (std::ptrdiff_t delta) |
| Decrement the iterator by delta. | |
| bool | operator== (imageIterator const &rhs) |
| Return true if the lhs equals the rhs. | |
| bool | operator!= (imageIterator const &rhs) |
| Return true if the lhs doesn't equal the rhs. | |
| bool | operator< (imageIterator const &rhs) |
| Return true if the lhs is less than the rhs. | |
An ImageBase iterator.
Definition at line 31 of file iterators.cc.
| bool lsst::afw::image::imageIterator::operator!= | ( | imageIterator const & | rhs | ) |
Return true if the lhs doesn't equal the rhs.
| rhs | right hand side |
| Image::Pixel & lsst::afw::image::imageIterator::operator* | ( | ) |
Dereference an iterator, returning a reference to a Pixel.
| void lsst::afw::image::imageIterator::operator++ | ( | ) |
Advance an iterator (prefix).
| void lsst::afw::image::imageIterator::operator++ | ( | int | ) |
Advance an iterator (postfix).
| void lsst::afw::image::imageIterator::operator+= | ( | std::ptrdiff_t | delta | ) |
Increment the iterator by delta.
| delta | how far to move the iterator |
| void lsst::afw::image::imageIterator::operator-= | ( | std::ptrdiff_t | delta | ) |
Decrement the iterator by delta.
| delta | how far to move the iterator |
| bool lsst::afw::image::imageIterator::operator< | ( | imageIterator const & | rhs | ) |
Return true if the lhs is less than the rhs.
right hand side
| bool lsst::afw::image::imageIterator::operator== | ( | imageIterator const & | rhs | ) |
Return true if the lhs equals the rhs.
| rhs | right hand side |