◐ Shell
clean mode source ↗

std::bind1st, std::bind2nd – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

template< class F, class T > std::binder1st<F> bind1st( const F& f, const T& x );

(1) (veraltet)

template< class F, class T > std::binder2nd<F> bind2nd( const F& f, const T& x );

(2) (veraltet)

Wird ein bestimmtes Argument x zu einem ersten oder zweiten Parameter der gegebenen binären Funktions-Objekt f. Das heißt, speichert x innerhalb des resultierenden Umhüllung, die, wenn sie aufgerufen wird, übergibt x als den ersten oder den zweiten Parameter der 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.

1)

Wird das erste Argument f um x. Effektiv nennt 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.

2)

Wird das zweite Argument der f um x. Effektiv nennt 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.

Parameter

f -

Zeiger auf eine Funktion, um ein Argument zu binden

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 zu f binden

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.

Rückgabewert

Eine Funktion Objekt wrapping f und 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.

Ausnahmen

(None)

Original:

(none)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Siehe auch

Funktions-Objekt hält eine binäre Funktion und eines ihrer Argumente

Original:

function object holding a binary function and one of its arguments

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Klassen-Template) [edit]