![]() |
Header file for the implementation of the Rows view. More...
#include <array>
#include <utility>
#include <vector>
#include <blaze/math/Aliases.h>
#include <blaze/math/AlignmentFlag.h>
#include <blaze/math/constraints/MutableDataAccess.h>
#include <blaze/math/constraints/RequiresEvaluation.h>
#include <blaze/math/Exception.h>
#include <blaze/math/expressions/DeclExpr.h>
#include <blaze/math/expressions/MatEvalExpr.h>
#include <blaze/math/expressions/MatMapExpr.h>
#include <blaze/math/expressions/MatMatAddExpr.h>
#include <blaze/math/expressions/MatMatMapExpr.h>
#include <blaze/math/expressions/MatMatMultExpr.h>
#include <blaze/math/expressions/MatMatSubExpr.h>
#include <blaze/math/expressions/Matrix.h>
#include <blaze/math/expressions/MatReduceExpr.h>
#include <blaze/math/expressions/MatScalarDivExpr.h>
#include <blaze/math/expressions/MatScalarMultExpr.h>
#include <blaze/math/expressions/MatSerialExpr.h>
#include <blaze/math/expressions/MatTransExpr.h>
#include <blaze/math/expressions/MatVecMultExpr.h>
#include <blaze/math/expressions/SchurExpr.h>
#include <blaze/math/expressions/VecExpandExpr.h>
#include <blaze/math/expressions/VecTVecMultExpr.h>
#include <blaze/math/InitializerList.h>
#include <blaze/math/IntegerSequence.h>
#include <blaze/math/InversionFlag.h>
#include <blaze/math/ReductionFlag.h>
#include <blaze/math/shims/IsDefault.h>
#include <blaze/math/shims/Serial.h>
#include <blaze/math/StorageOrder.h>
#include <blaze/math/typetraits/HasConstDataAccess.h>
#include <blaze/math/typetraits/HasMutableDataAccess.h>
#include <blaze/math/typetraits/IsAligned.h>
#include <blaze/math/typetraits/IsRestricted.h>
#include <blaze/math/typetraits/IsRowMajorMatrix.h>
#include <blaze/math/typetraits/MaxSize.h>
#include <blaze/math/typetraits/Size.h>
#include <blaze/math/views/Check.h>
#include <blaze/math/views/Forward.h>
#include <blaze/math/views/row/RowData.h>
#include <blaze/math/views/rows/BaseTemplate.h>
#include <blaze/math/views/rows/Dense.h>
#include <blaze/math/views/rows/Sparse.h>
#include <blaze/util/Assert.h>
#include <blaze/util/DisableIf.h>
#include <blaze/util/EnableIf.h>
#include <blaze/util/FunctionTrace.h>
#include <blaze/util/mpl/PtrdiffT.h>
#include <blaze/util/SmallArray.h>
#include <blaze/util/TypeList.h>
#include <blaze/util/Types.h>
#include <blaze/util/typetraits/IsPointer.h>
#include <blaze/util/Unused.h>
Go to the source code of this file.
Namespaces | |
blaze | |
Namespace of the Blaze C++ math library. | |
Functions | |
template<size_t I, size_t... Is, typename MT , bool SO, typename... RRAs> | |
decltype(auto) | blaze::rows (Matrix< MT, SO > &matrix, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
template<size_t I, size_t... Is, typename MT , bool SO, typename... RRAs> | |
decltype(auto) | blaze::rows (const Matrix< MT, SO > &matrix, RRAs... args) |
Creating a view on a selection of rows of the given constant matrix. More... | |
template<size_t I, size_t... Is, typename MT , bool SO, typename... RRAs> | |
decltype(auto) | blaze::rows (Matrix< MT, SO > &&matrix, RRAs... args) |
Creating a view on a selection of rows of the given temporary matrix. More... | |
template<typename MT , bool SO, typename T , typename... RRAs> | |
decltype(auto) | blaze::rows (Matrix< MT, SO > &matrix, const T *indices, size_t n, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
template<typename MT , bool SO, typename T , typename... RRAs> | |
decltype(auto) | blaze::rows (const Matrix< MT, SO > &matrix, const T *indices, size_t n, RRAs... args) |
Creating a view on a selection of rows of the given constant matrix. More... | |
template<typename MT , bool SO, typename T , typename... RRAs> | |
decltype(auto) | blaze::rows (Matrix< MT, SO > &&matrix, const T *indices, size_t n, RRAs... args) |
Creating a view on a selection of rows of the given temporary matrix. More... | |
template<typename MT , bool SO, typename P , typename... RRAs, EnableIf_t< !IsPointer_v< P > > * = nullptr> | |
decltype(auto) | blaze::rows (Matrix< MT, SO > &matrix, P p, size_t n, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
template<typename MT , bool SO, typename P , typename... RRAs, EnableIf_t< !IsPointer_v< P > > * = nullptr> | |
decltype(auto) | blaze::rows (const Matrix< MT, SO > &matrix, P p, size_t n, RRAs... args) |
Creating a view on a selection of rows of the given constant matrix. More... | |
template<typename MT , bool SO, typename P , typename... RRAs, EnableIf_t< !IsPointer_v< P > > * = nullptr> | |
decltype(auto) | blaze::rows (Matrix< MT, SO > &&matrix, P p, size_t n, RRAs... args) |
Creating a view on a selection of rows of the given temporary matrix. More... | |
template<typename MT , size_t... Is, typename... RRAs> | |
decltype(auto) | blaze::rows (MT &&matrix, index_sequence< Is... > indices, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
template<typename MT , typename T , typename... RRAs> | |
decltype(auto) | blaze::rows (MT &&matrix, initializer_list< T > indices, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
template<typename MT , typename T , size_t N, typename... RRAs> | |
decltype(auto) | blaze::rows (MT &&matrix, const std::array< T, N > &indices, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
template<typename MT , typename T , typename... RRAs> | |
decltype(auto) | blaze::rows (MT &&matrix, const std::vector< T > &indices, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
template<typename MT , typename T , size_t N, typename... RRAs> | |
decltype(auto) | blaze::rows (MT &&matrix, const SmallArray< T, N > &indices, RRAs... args) |
Creating a view on a selection of rows of the given matrix. More... | |
Header file for the implementation of the Rows view.
Copyright (C) 2012-2018 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.