|  | 
| template<class E> | 
| derived_type & | assign_xexpression (const xexpression< E > &e) | 
|  | 
| template<class E> | 
| derived_type & | computed_assign (const xexpression< E > &e) | 
|  | 
| template<class E, class F> | 
| derived_type & | scalar_computed_assign (const E &e, F &&f) | 
|  | 
| template<class E> | 
| auto | assign_xexpression (const xexpression< E > &e) -> derived_type & | 
|  | 
| template<class E> | 
| auto | computed_assign (const xexpression< E > &e) -> derived_type & | 
|  | 
| template<class E, class F> | 
| auto | scalar_computed_assign (const E &e, F &&f) -> derived_type & | 
|  | 
| template<class E> | 
| auto | operator= (const xexpression< E > &e) -> derived_type & | 
|  | 
| template<class CS> | 
| auto | get_assigner (const CS &) const -> xchunked_assigner< temporary_type, CS > | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator+= (const E &) | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator-= (const E &) | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator*= (const E &) | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator/= (const E &) | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator%= (const E &) | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator&= (const E &) | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator|= (const E &) | 
|  | 
| template<class E> | 
| disable_xexpression< E, derived_type & > | operator^= (const E &) | 
|  | 
| template<class E> | 
| derived_type & | operator+= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | operator-= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | operator*= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | operator/= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | operator%= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | operator&= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | operator|= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | operator^= (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | plus_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | minus_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | multiplies_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | divides_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | modulus_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | bit_and_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | bit_or_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| derived_type & | bit_xor_assign (const xexpression< E > &) | 
|  | 
| template<class E> | 
| auto | operator+= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Adds the scalar eto*this.
 | 
|  | 
| template<class E> | 
| auto | operator-= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Subtracts the scalar efrom*this.
 | 
|  | 
| template<class E> | 
| auto | operator*= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Multiplies *thiswith the scalare.
 | 
|  | 
| template<class E> | 
| auto | operator/= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Divides *thisby the scalare.
 | 
|  | 
| template<class E> | 
| auto | operator%= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Computes the remainder of *thisafter division by the scalare.
 | 
|  | 
| template<class E> | 
| auto | operator&= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Computes the bitwise and of *thisand the scalareand assigns it to*this.
 | 
|  | 
| template<class E> | 
| auto | operator|= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Computes the bitwise or of *thisand the scalareand assigns it to*this.
 | 
|  | 
| template<class E> | 
| auto | operator^= (const E &e) -> disable_xexpression< E, derived_type & > | 
|  | Computes the bitwise xor of *thisand the scalareand assigns it to*this.
 | 
|  | 
| template<class E> | 
| auto | operator+= (const xexpression< E > &e) -> derived_type & | 
|  | Adds the xexpression eto*this.
 | 
|  | 
| template<class E> | 
| auto | operator-= (const xexpression< E > &e) -> derived_type & | 
|  | Subtracts the xexpression efrom*this.
 | 
|  | 
| template<class E> | 
| auto | operator*= (const xexpression< E > &e) -> derived_type & | 
|  | Multiplies *thiswith the xexpressione.
 | 
|  | 
| template<class E> | 
| auto | operator/= (const xexpression< E > &e) -> derived_type & | 
|  | Divides *thisby the xexpressione.
 | 
|  | 
| template<class E> | 
| auto | operator%= (const xexpression< E > &e) -> derived_type & | 
|  | Computes the remainder of *thisafter division by the xexpressione.
 | 
|  | 
| template<class E> | 
| auto | operator&= (const xexpression< E > &e) -> derived_type & | 
|  | Computes the bitwise and of *thisand the xexpressioneand assigns it to*this.
 | 
|  | 
| template<class E> | 
| auto | operator|= (const xexpression< E > &e) -> derived_type & | 
|  | Computes the bitwise or of *thisand the xexpressioneand assigns it to*this.
 | 
|  | 
| template<class E> | 
| auto | operator^= (const xexpression< E > &e) -> derived_type & | 
|  | Computes the bitwise xor of *thisand the xexpressioneand assigns it to*this.
 | 
|  | 
| template<class E> | 
| auto | assign (const xexpression< E > &e) -> derived_type & | 
|  | Assigns the xexpression eto*this.
 | 
|  | 
| template<class E> | 
| auto | plus_assign (const xexpression< E > &e) -> derived_type & | 
|  | Adds the xexpression eto*this.
 | 
|  | 
| template<class E> | 
| auto | minus_assign (const xexpression< E > &e) -> derived_type & | 
|  | Subtracts the xexpression eto*this.
 | 
|  | 
| template<class E> | 
| auto | multiplies_assign (const xexpression< E > &e) -> derived_type & | 
|  | Multiplies *thiswith the xexpressione.
 | 
|  | 
| template<class E> | 
| auto | divides_assign (const xexpression< E > &e) -> derived_type & | 
|  | Divides *thisby the xexpressione.
 | 
|  | 
| template<class E> | 
| auto | modulus_assign (const xexpression< E > &e) -> derived_type & | 
|  | Computes the remainder of *thisafter division by the xexpressione.
 | 
|  | 
| template<class E> | 
| auto | bit_and_assign (const xexpression< E > &e) -> derived_type & | 
|  | Computes the bitwise and of eto*this.
 | 
|  | 
| template<class E> | 
| auto | bit_or_assign (const xexpression< E > &e) -> derived_type & | 
|  | Computes the bitwise or of eto*this.
 | 
|  | 
| template<class E> | 
| auto | bit_xor_assign (const xexpression< E > &e) -> derived_type & | 
|  | Computes the bitwise xor of eto*this.
 | 
|  | 
| template<class E> | 
| auto | operator= (const xexpression< E > &e) -> derived_type & | 
|  | 
template<class D>
class xt::xchunked_semantic< D >
Definition at line 39 of file xchunked_assign.hpp.