|
template<typename Scalar > |
void | syten::SpanImpl::conj_copy (ConstSpan< Scalar > const inp, MutSpan< Scalar > out) |
| Copies data from inp to out and complex-conjugates it. More...
|
|
template<typename T > |
bool | syten::SpanImpl::is_sorted (ConstSpan< T > c) |
| Returns true if the span is sorted according to operator< (smallest first). More...
|
|
template<typename T > |
std::ostream & | syten::SpanImpl::operator<< (std::ostream &out, ConstSpan< T > cs) |
| Output for a ConstSpan. More...
|
|
template<typename T > |
std::ostream & | syten::SpanImpl::operator<< (std::ostream &out, MutSpan< T > cs) |
| Output for a MutSpan. More...
|
|
template<typename Container , typename T > |
bool | syten::SpanImpl::operator== (ConstSpan< T > const &m, Container const &c) |
| Element-wise equality comparison for a ConstSpan with any container. More...
|
|
template<typename Container , typename T > |
bool | syten::SpanImpl::operator== (Container const &c, ConstSpan< T > const &m) |
| Element-wise equality comparison for a ConstSpan with any container. More...
|
|
template<typename Container , typename T > |
bool | syten::SpanImpl::operator== (Container const &c, MutSpan< T > const &m) |
| Element-wise equality comparison for a MutSpan with any container. More...
|
|
template<typename Container , typename T > |
bool | syten::SpanImpl::operator== (MutSpan< T > const &m, Container const &c) |
| Element-wise equality comparison for a MutSpan with any container. More...
|
|
template<typename T > |
void | syten::SpanImpl::reverse (MutSpan< T > m) |
| Reverses the elements in the mutable span m in-place. More...
|
|
A non-owning object for a continuous region of memory.