![]() |
Iterator class for pointer vectors. More...
#include <iterator>
Go to the source code of this file.
Classes | |
class | blaze::PtrIterator< Type > |
Implementation of an iterator for pointer vectors.The PtrIterator class follows the example of the random-access iterator classes of the STL. However, the focus of this iterator implementation is the use with (polymorphic) pointers. The implementation of the Blaze library eases the use of iterators over a range of pointers and improves the semantics on these pointers. . More... | |
Namespaces | |
blaze | |
Namespace of the Blaze C++ math library. | |
Functions | |
PtrIterator operators | |
template<typename TypeL , typename TypeR > | |
bool | blaze::operator== (const PtrIterator< TypeL > &lhs, const PtrIterator< TypeR > &rhs) |
Equality comparison between two PtrIterator objects. More... | |
template<typename TypeL , typename TypeR > | |
bool | blaze::operator!= (const PtrIterator< TypeL > &lhs, const PtrIterator< TypeR > &rhs) |
Inequality comparison between two PtrIterator objects. More... | |
template<typename TypeL , typename TypeR > | |
bool | blaze::operator< (const PtrIterator< TypeL > &lhs, const PtrIterator< TypeR > &rhs) |
Less-than comparison between two PtrIterator objects. More... | |
template<typename TypeL , typename TypeR > | |
bool | blaze::operator> (const PtrIterator< TypeL > &lhs, const PtrIterator< TypeR > &rhs) |
Greater-than comparison between two PtrIterator objects. More... | |
template<typename TypeL , typename TypeR > | |
bool | blaze::operator<= (const PtrIterator< TypeL > &lhs, const PtrIterator< TypeR > &rhs) |
Less-or-equal-than comparison between two PtrIterator objects. More... | |
template<typename TypeL , typename TypeR > | |
bool | blaze::operator>= (const PtrIterator< TypeL > &lhs, const PtrIterator< TypeR > &rhs) |
Greater-or-equal-than comparison between two PtrIterator objects. More... | |
Iterator class for pointer vectors.
Copyright (C) 2013 Klaus Iglberger - All Rights Reserved
This file is part of the Blaze library. You can redistribute it and/or modify it under the terms of the New (Revised) BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.