std::bind1st, std::bind2nd
提供: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) | (廃止予定) |
| template< class F, class T > std::binder2nd<F> bind2nd( const F& f, const T& x ); |
(2) | (廃止予定) |
指定されたバイナリ関数オブジェクト
1) xの最初または2番目のパラメータに指定された引数fをバインドします。つまり、呼び出された場合、最初またはxの2番目のパラメータとしてxを渡し、結果のラッパー、店舗内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.
fにxの最初の引数をバインドします。効果的に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.
fにxの2番目の引数をバインドします。効果的に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.
目次 |
[編集] パラメータ
| f | - | に引数をバインドする関数へのポインタ
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 | - | fにバインドする引数Original: argument to bind to fThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
関数オブジェクトのラッピング
fと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.
[編集] 例外
(なし)
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.
[編集] も参照してください
| (廃止予定) (廃止予定) |
バイナリ関数およびその引数の1を保持する関数オブジェクト 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. (クラステンプレート) |