Std :: bind with explicit return type
One version std::bind
allows the caller to provide an explicit return type:
template< class R, class F, class... Args >
/*unspecified*/ bind( F&& f, Args&&... args );
What's a good example when you can use (or be forced to use) this version std::bind
?
+3
Alejandro Freeman
source
to share
No one has answered this question yet
Check out similar questions:
3076
2437
2387
1250
651
514
366
23
4
1