35#ifndef _BLAZE_MATH_ADAPTORS_LOWERMATRIX_LOWERPROXY_H_
36#define _BLAZE_MATH_ADAPTORS_LOWERMATRIX_LOWERPROXY_H_
98template<
typename MT >
100 :
public Proxy< LowerProxy<MT>, ElementType_t<MT> >
136 template<
typename T >
139 template<
typename T >
143 template<
typename T >
inline const LowerProxy& operator+=(
const T& value )
const;
144 template<
typename T >
inline const LowerProxy& operator-=(
const T& value )
const;
145 template<
typename T >
inline const LowerProxy& operator*=(
const T& value )
const;
146 template<
typename T >
inline const LowerProxy& operator/=(
const T& value )
const;
147 template<
typename T >
inline const LowerProxy& operator%=(
const T& value )
const;
220template< typename MT >
246template<
typename MT >
270template<
typename MT >
271template<
typename T >
295template<
typename MT >
296template<
typename T >
320template<
typename MT >
321template<
typename T >
345template<
typename MT >
346template<
typename T >
370template<
typename MT >
371template<
typename T >
395template<
typename MT >
396template<
typename T >
420template<
typename MT >
421template<
typename T >
445template<
typename MT >
446template<
typename T >
473template<
typename MT >
494template<
typename MT >
507template<
typename MT >
528template<
typename MT >
Header file for the AddConst type trait.
Header file for the AddLValueReference type trait.
Header file for auxiliary alias declarations.
typename T::ElementType ElementType_t
Alias declaration for nested ElementType type definitions.
Definition: Aliases.h:190
Constraint on the data type.
Constraint on the data type.
Header file for the isDefault shim.
Header file for the isOne shim.
Header file for the isReal shim.
Constraint on the data type.
Constraint on the data type.
Constraint on the data type.
Header file for the relaxation flag enumeration.
Constraint on the data type.
Constraint on the data type.
Constraint on the data type.
Access proxy for lower triangular matrices.
Definition: LowerProxy.h:101
AddLValueReference_t< ReferenceType > RawReference
Reference-to-non-const to the represented element.
Definition: LowerProxy.h:111
ElementType_t< MT > RepresentedType
Type of the represented matrix element.
Definition: LowerProxy.h:110
bool isRestricted() const noexcept
Returns whether the proxy represents a restricted matrix element.
Definition: LowerProxy.h:508
const LowerProxy * operator->() const noexcept
Direct access to the accessed matrix element.
Definition: LowerProxy.h:474
const RepresentedType & ConstReference
Reference-to-const to the represented element.
Definition: LowerProxy.h:112
LowerProxy(MT &matrix, size_t row, size_t column)
Initialization constructor for a LowerProxy.
Definition: LowerProxy.h:221
const bool restricted_
Access flag for the accessed matrix element.
Definition: LowerProxy.h:178
const LowerProxy & operator=(const LowerProxy &lp) const
Copy assignment operator for LowerProxy.
Definition: LowerProxy.h:247
RawReference get() const noexcept
Returning the value of the accessed matrix element.
Definition: LowerProxy.h:495
ReferenceType value_
Reference to the accessed matrix element.
Definition: LowerProxy.h:177
AddConst_t< Reference_t< MT > > ReferenceType
Reference type of the underlying matrix type.
Definition: LowerProxy.h:105
Proxy base class.
Definition: Proxy.h:169
Constraint on the data type.
Constraint on the data type.
Constraint on the data type.
decltype(auto) column(Matrix< MT, SO > &matrix, RCAs... args)
Creating a view on a specific column of the given matrix.
Definition: Column.h:137
#define BLAZE_CONSTRAINT_MUST_NOT_BE_VOLATILE(T)
Constraint on the data type.
Definition: Volatile.h:79
#define BLAZE_CONSTRAINT_MUST_NOT_BE_POINTER_TYPE(T)
Constraint on the data type.
Definition: Pointer.h:79
#define BLAZE_CONSTRAINT_MUST_NOT_BE_CONST(T)
Constraint on the data type.
Definition: Const.h:79
#define BLAZE_CONSTRAINT_MUST_NOT_BE_REFERENCE_TYPE(T)
Constraint on the data type.
Definition: Reference.h:79
#define BLAZE_CONSTRAINT_MUST_NOT_BE_SYMMETRIC_MATRIX_TYPE(T)
Constraint on the data type.
Definition: Symmetric.h:79
#define BLAZE_CONSTRAINT_MUST_BE_MATRIX_TYPE(T)
Constraint on the data type.
Definition: Matrix.h:61
#define BLAZE_CONSTRAINT_MUST_NOT_BE_VIEW_TYPE(T)
Constraint on the data type.
Definition: View.h:81
#define BLAZE_CONSTRAINT_MUST_NOT_BE_HERMITIAN_MATRIX_TYPE(T)
Constraint on the data type.
Definition: Hermitian.h:79
#define BLAZE_CONSTRAINT_MUST_NOT_BE_UPPER_MATRIX_TYPE(T)
Constraint on the data type.
Definition: Upper.h:81
#define BLAZE_CONSTRAINT_MUST_NOT_BE_COMPUTATION_TYPE(T)
Constraint on the data type.
Definition: Computation.h:81
#define BLAZE_CONSTRAINT_MUST_NOT_BE_LOWER_MATRIX_TYPE(T)
Constraint on the data type.
Definition: Lower.h:81
#define BLAZE_CONSTRAINT_MUST_NOT_BE_TRANSFORMATION_TYPE(T)
Constraint on the data type.
Definition: Transformation.h:81
decltype(auto) row(Matrix< MT, SO > &, RRAs...)
Creating a view on a specific row of the given matrix.
Definition: Row.h:137
typename AddConst< T >::Type AddConst_t
Auxiliary alias declaration for the AddConst type trait.
Definition: AddConst.h:95
typename AddLValueReference< T >::Type AddLValueReference_t
Auxiliary alias declaration for the AddLValueReference type trait.
Definition: AddLValueReference.h:97
#define BLAZE_THROW_INVALID_ARGUMENT(MESSAGE)
Macro for the emission of a std::invalid_argument exception.
Definition: Exception.h:235
Header file for the exception macros of the math module.
Header file for the extended initializer_list functionality.
Header file for the Proxy class.
Header file for the clear shim.
Header file for the isZero shim.
Header file for basic type definitions.