We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
std::bind
1 parent 022a200 commit b6e1437Copy full SHA for b6e1437
tips/partial_eval.md
@@ -6,6 +6,7 @@
6
- [部分適用(partial application)](#partial-application)
7
- [カリー化(currying)+適用(applying)](#currying)
8
- [メンバ関数のレシーバを部分適用する](#receiver-partial-application)
9
+- [C++の国際標準規格上の類似する機能](#cpp-standard)
10
11
12
## <a id="partial-application" href="#partial-application">部分適用(partial application)</a>
@@ -126,3 +127,5 @@ int main()
126
127
B::print()
128
```
129
130
+## <a id="cpp-standard" href="#cpp-standard">C++の国際標準規格上の類似する機能</a>
131
+- [`std::bind`](https://cpprefjp.github.io/reference/functional/bind.html)
0 commit comments