Blaze  3.6
Classes | Namespaces
UniformIterator.h File Reference

Header file for the UniformIterator class template. More...

#include <iterator>
#include <blaze/math/SIMD.h>
#include <blaze/util/Assert.h>
#include <blaze/util/MaybeUnused.h>
#include <blaze/util/Types.h>

Go to the source code of this file.

Classes

class  blaze::UniformIterator< Type, AF >
 Implementation of a generic iterator for uniform vectors and matrices.The UniformIterator represents a generic random-access iterator that can be used for uniform vectors and specific rows/columns of uniform matrices. More...
 

Namespaces

 blaze
 Namespace of the Blaze C++ math library.
 

Functions

UniformIterator operators
template<typename T1 , bool AF1, typename T2 , bool AF2>
constexpr bool blaze::operator== (const UniformIterator< T1, AF1 > &lhs, const UniformIterator< T2, AF2 > &rhs) noexcept
 Equality comparison between two UniformIterator objects. More...
 
template<typename T1 , bool AF1, typename T2 , bool AF2>
constexpr bool blaze::operator!= (const UniformIterator< T1, AF1 > &lhs, const UniformIterator< T2, AF2 > &rhs) noexcept
 Inequality comparison between two UniformIterator objects. More...
 
template<typename T1 , bool AF1, typename T2 , bool AF2>
constexpr bool blaze::operator< (const UniformIterator< T1, AF1 > &lhs, const UniformIterator< T2, AF2 > &rhs) noexcept
 Less-than comparison between two UniformIterator objects. More...
 
template<typename T1 , bool AF1, typename T2 , bool AF2>
constexpr bool blaze::operator> (const UniformIterator< T1, AF1 > &lhs, const UniformIterator< T2, AF2 > &rhs) noexcept
 Greater-than comparison between two UniformIterator objects. More...
 
template<typename T1 , bool AF1, typename T2 , bool AF2>
constexpr bool blaze::operator<= (const UniformIterator< T1, AF1 > &lhs, const UniformIterator< T2, AF2 > &rhs) noexcept
 Less-or-equal-than comparison between two UniformIterator objects. More...
 
template<typename T1 , bool AF1, typename T2 , bool AF2>
constexpr bool blaze::operator>= (const UniformIterator< T1, AF1 > &lhs, const UniformIterator< T2, AF2 > &rhs) noexcept
 Greater-or-equal-than comparison between two UniformIterator objects. More...
 
template<typename Type , bool AF>
constexpr const UniformIterator< Type, AF > blaze::operator+ (const UniformIterator< Type, AF > &it, ptrdiff_t inc) noexcept
 Addition between a UniformIterator and an integral value. More...
 
template<typename Type , bool AF>
constexpr const UniformIterator< Type, AF > blaze::operator+ (ptrdiff_t inc, const UniformIterator< Type, AF > &it) noexcept
 Addition between an integral value and a UniformIterator. More...
 
template<typename Type , bool AF>
constexpr const UniformIterator< Type, AF > blaze::operator- (const UniformIterator< Type, AF > &it, ptrdiff_t dec) noexcept
 Subtraction between a UniformIterator and an integral value. More...
 
template<typename Type , bool AF>
constexpr ptrdiff_t blaze::operator- (const UniformIterator< Type, AF > &lhs, const UniformIterator< Type, AF > &rhs) noexcept
 Calculating the number of elements between two UniformIterator objects. More...
 

Detailed Description

Header file for the UniformIterator class template.

Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved

This file is part of the Blaze library. You can redistribute it and/or modify it under

  The names of its contributors may not be used to endorse or promote products derived

from this software without specific prior written permission.

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.