version 0.4.1
Ikarus::Concepts::MultiplyAble Concept Reference

Concept defining the requirements for types that support multiplication. More...

#include <ikarus/utils/concepts.hh>

Concept definition

template<typename L, typename R>
concept Ikarus::Concepts::MultiplyAble = requires(L x, R y) { x* y; }
Concept defining the requirements for types that support multiplication.
Definition: concepts.hh:241

Detailed Description

Template Parameters
LType of the left operand.
RType of the right operand.

The concept specifies that instances of types L and R can be multiplied using the * operator.