35#ifndef _BLAZE_MATH_ADAPTORS_UPPERMATRIX_UPPERPROXY_H_
36#define _BLAZE_MATH_ADAPTORS_UPPERMATRIX_UPPERPROXY_H_
97template<
typename MT >
99 :
public Proxy< UpperProxy<MT>, ElementType_t<MT> >
135 template<
typename T >
138 template<
typename T >
142 template<
typename T >
inline const UpperProxy& operator+=(
const T& value )
const;
143 template<
typename T >
inline const UpperProxy& operator-=(
const T& value )
const;
144 template<
typename T >
inline const UpperProxy& operator*=(
const T& value )
const;
145 template<
typename T >
inline const UpperProxy& operator/=(
const T& value )
const;
146 template<
typename T >
inline const UpperProxy& operator%=(
const T& value )
const;
219template< typename MT >
245template<
typename MT >
269template<
typename MT >
270template<
typename T >
294template<
typename MT >
295template<
typename T >
319template<
typename MT >
320template<
typename T >
344template<
typename MT >
345template<
typename T >
369template<
typename MT >
370template<
typename T >
394template<
typename MT >
395template<
typename T >
419template<
typename MT >
420template<
typename T >
444template<
typename MT >
445template<
typename T >
472template<
typename MT >
493template<
typename MT >
506template<
typename MT >
527template<
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.
Proxy base class.
Definition: Proxy.h:169
Access proxy for upper triangular matrices.
Definition: UpperProxy.h:100
const UpperProxy * operator->() const noexcept
Direct access to the accessed matrix element.
Definition: UpperProxy.h:473
ReferenceType value_
Reference to the accessed matrix element.
Definition: UpperProxy.h:176
bool isRestricted() const noexcept
Returns whether the proxy represents a restricted matrix element..
Definition: UpperProxy.h:507
UpperProxy(MT &matrix, size_t row, size_t column)
Initialization constructor for a UpperProxy.
Definition: UpperProxy.h:220
RawReference get() const noexcept
Returning the value of the accessed matrix element.
Definition: UpperProxy.h:494
AddConst_t< typename MT::Reference > ReferenceType
Reference type of the underlying matrix type.
Definition: UpperProxy.h:104
ElementType_t< MT > RepresentedType
Type of the represented matrix element.
Definition: UpperProxy.h:109
const bool restricted_
Access flag for the accessed matrix element.
Definition: UpperProxy.h:177
const UpperProxy & operator=(const UpperProxy &up) const
Copy assignment operator for UpperProxy.
Definition: UpperProxy.h:246
const RepresentedType & ConstReference
Reference-to-const to the represented element.
Definition: UpperProxy.h:111
AddLValueReference_t< ReferenceType > RawReference
Reference-to-non-const to the represented element.
Definition: UpperProxy.h:110
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 isZero shim.
Header file for basic type definitions.