If you want to bind a reference to a function f
, you can use std::bind(f, std::ref(x))
. In this case f
takes a reference or makes a copy.
Now I have a function void g(T & t)
. I would like to bind the input argument to std::shared_ptr<T> mySharedPtr
like this: std::bind(g, mySharedPtr)
. This would guarantee that mySharedPtr
's data would have a lifetime at least as long as the bind. But since g
takes a reference, this does not type-check.
Is there something similar to std::ref
that takes a std::shared_ptr
and dereferences it before passing it into g
? If not, could I make one myself?
(If you give an answer using lambdas, please also include one without lambdas since my compiler does not support them.)
Edit: std::bind(g, std::ref(*mySharedPtr))
does not work since it loses the lifetime guarantee of the std::shared_ptr
.