Requires that multiplication can be performed. More...
#include <concepts.hh>
Public Member Functions | |
unspecified | operator*= (Arg2) |
In-place multiplication. Return type is not checked to support lazy evaluation. | |
unspecified | rightmultiplyany (Arg2) |
Multiplication via rightmultiplyany(Arg2). Return type is not checked to support lazy evaluation. | |
Requires that multiplication can be performed.
Requires that either a free operator*(Arg1,Arg2) exists for multiplication or Arg1 provides either the in-place multiplication operator*=(Arg2) or the member function rightmultiplyany(Arg2).