Namespaces
Variants

std:: modulus<void>

From cppreference.net
Utilities library
Function objects
Function invocation
(C++17) (C++23)
Identity function object
(C++20)
Old binders and adaptors
( until C++17* )
( until C++17* )
( until C++17* )
( until C++17* )
( until C++17* ) ( until C++17* ) ( until C++17* ) ( until C++17* )
( until C++20* )
( until C++20* )
( until C++17* ) ( until C++17* )
( until C++17* ) ( until C++17* )

( until C++17* )
( until C++17* ) ( until C++17* ) ( until C++17* ) ( until C++17* )
( until C++20* )
( until C++20* )
Definido en el encabezado <functional>
template <>
class modulus < void > ;
(desde C++14)

std:: modulus < void > es una especialización de std::modulus con tipo de parámetro y retorno deducidos.

Contenidos

Tipos anidados

Tipo anidado Definición
is_transparent unspecified

Funciones miembro

operator()
devuelve el módulo de dos argumentos
(función miembro pública)

std::modulus<void>:: operator()

template < class T, class U >

constexpr auto operator ( ) ( T && lhs, U && rhs ) const

- > decltype ( std:: forward < T > ( lhs ) % std:: forward < U > ( rhs ) ) ;

Devuelve el resto de la división de lhs entre rhs .

Parámetros

lhs, rhs - valores a dividir

Valor de retorno

std:: forward < T > ( lhs ) % std:: forward < U > ( rhs ) .

Ejemplo

#include <functional>
#include <iostream>
struct M
{
    M(int x) { std::cout << "M(" << x << ");\n"; }
    M() {}
};
auto operator%(M, M) { std::cout << "operator%(M, M);\n"; return M{}; }
auto operator%(M, int) { std::cout << "operator%(M, int);\n"; return M{}; }
auto operator%(int, M) { std::cout << "operator%(int, M);\n"; return M{}; }
int main()
{
    M m;
    // 42 se convierte en un objeto temporal M{42}
    std::modulus<M>{}(m, 42);    // llama a operator%(M, M)
    // sin objeto temporal
    std::modulus<void>{}(m, 42); // llama a operator%(M, int)
    std::modulus<void>{}(42, m); // llama a operator%(int, M)
}

Salida:

M(42);
operator%(M, M);
operator%(M, int);
operator%(int, M);