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

◆ AFF_OPERATORS_UNOPB

#define AFF_OPERATORS_UNOPB (   RETCONT,
  INCONT,
  OP 
)
Value:
template<class A , class B > \
RETCONT< A >& operator OP ## =(RETCONT< A >& container1, \
const INCONT< B >& container2) \
{ \
aff::Iterator< RETCONT< A > > i1(container1); \
aff::Browser< INCONT< B > > i2(container2); \
while ( i1.valid() && i2.valid() ) \
{ (*i1) OP ## = (*i2); ++i1; ++i2; } \
return(container1); \
}

unary operator macro for containers with different value type

Definition at line 117 of file operators.h.