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

◆ AFF_OPERATORS_UNOP

#define AFF_OPERATORS_UNOP (   CONT,
  OP 
)
Value:
template<class AFF_OPERATORS_TEMPAR > \
const CONT& operator OP ## =(const CONT& container, \
typename CONT::Tconst_reference value) \
{ \
for (aff::Iterator< CONT > i(container); i.valid(); ++i) \
{ (*i) OP ## = value; } \
return(container); \
}
Iterator.
Definition: iterator.h:73
bool valid() const
delegate to stepper
Definition: iterator.h:97

unary operator macro for containers with common value type

Definition at line 80 of file operators.h.