Requirements for vectors. More...
#include <concepts.hh>
Public Member Functions | |
| unspecified | operator[] (int) |
| Access to entry. | |
| unspecified | operator() (int) |
| Access to entry. | |
Public Member Functions inherited from RFFGen::Concepts::CopyConcept | |
| CopyConcept (const CopyConcept &) | |
| Copy-constructible. | |
| CopyConcept & | operator= (const CopyConcept &) |
| Copy-assignable. | |
Public Member Functions inherited from RFFGen::Concepts::MultiplyWithArithmeticFromLeftConcept | |
| unspecified | operator*= (double) |
| In-place multiplication. Return type is not checked to support lazy evaluation. | |
| unspecified | operator*= (int) |
| In-place multiplication. Return type is not checked to support lazy evaluation. | |
Public Member Functions inherited from RFFGen::Concepts::SummationConcept | |
| unspecified | operator+= (SummationConcept) |
| In-place summation. Return type is not checked to support lazy evaluation. | |
Requirements for vectors.
Access to vector elements must be possible either via A[i] or A(i). Moreover the requirements of ArithmeticConcept must be satisfied.
1.8.6