std::bind1st, std::bind2nd
De cppreference.com
< cpp | utility | functional
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
template< class F, class T > std::binder1st<F> bind1st( const F& f, const T& x ); |
(1) | (obsolète) |
template< class F, class T > std::binder2nd<F> bind2nd( const F& f, const T& x ); |
(2) | (obsolète) |
Lié une
1) x
argument donné à un paramètre de premier ou deuxième de la f
objet binaire fonction donnée. Qui est, dans les magasins x
l'enveloppe qui en résulte, qui, si elle est appelée, passe x
que le premier ou le deuxième paramètre de f
.Original:
Binds a given argument
x
to a first or second parameter of the given binary function object f
. That is, stores x
within the resulting wrapper, which, if called, passes x
as the first or the second parameter of f
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Lié au premier argument de
2) f
à x
. Appelle effectivement std::binder1st<F>(f, typename F::first_argument_type(x)) .Original:
Binds the first argument of
f
to x
. Effectively calls std::binder1st<F>(f, typename F::first_argument_type(x)).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Lié au deuxième argument de
f
à x
. Appelle effectivement std::binder2nd<F>(f, typename F::second_argument_type(x)) .Original:
Binds the second argument of
f
to x
. Effectively calls std::binder2nd<F>(f, typename F::second_argument_type(x)).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Sommaire |
[modifier] Paramètres
f | - | pointeur vers une fonction de lier un argument
Original: pointer to a function to bind an argument to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
x | - | argument pour se lier à
f Original: argument to bind to f The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier] Retourne la valeur
Un emballage objet fonction
f
et x
.Original:
A function object wrapping
f
and x
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifier] Exceptions
(Aucun)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifier] Voir aussi
(obsolète) (obsolète) |
foncteur contenant une fonction binaire et un des deux paramètres (classe générique) |