![]() |
libsemigroups
v3.0.0
C++ library for semigroups and monoids
|
Defined in matrix.hpp
.
This is a stateless struct with a single call operator of signature: bool operator()(bool x, bool y) const noexcept
which returns x && y
; representing multiplication in the boolean semiring.
Public Member Functions | |
constexpr bool | operator() (bool x, bool y) const noexcept |
Call operator for multiplication. | |
|
inlineconstexprnoexcept |
This function returns the product of its arguments in the boolean semiring.
x | the first value. |
y | the second value. |
x
and y
in the boolean semiring.noexcept
and is guaranteed never to throw.