AFF --- A container for numbers (array) by Friederich and Forbriger.

◆ operator=()

template<class C >
Slice& aff::util::Slice< C >::operator= ( Tconst_reference  value)
inline

provide value assignment to a slice

Definition at line 116 of file slice.h.

References aff::util::Slice< C >::Mrepresentation, and aff::util::Slice< C >::Mshape.

117  {
118  typename Tshape::Tstepper st(Mshape);
119  for(st.tofirst(); st.valid(); st.incr())
120  { Mrepresentation[st.current()]=value; }
121  return(*this);
122  }
Trepresentation Mrepresentation
Representation to use.
Definition: slice.h:139
Tshape Mshape
Shape to process.
Definition: slice.h:137