[Boost.Variant] Is there an r-value version of boost::get for variant?
As seen in the std docs [1], std::get for variant provides r-value
overloads.
Does Boost.Variant have them?
I'm interested in having this overload in particular:
template
2017-05-04 19:40 GMT+03:00 dariomt--- via Boost-users
As seen in the std docs [1], std::get for variant provides r-value overloads.
Does Boost.Variant have them?
I'm interested in having this overload in particular:
template
U && get(variant && operand);
Nope, this overload is missing. Please fill a feature request here https://svn.boost.org/trac/boost/newticket (do not forget to correctly specify the component, or the request will be lost for some time). Or even make a pull request here https://github.com/boostorg/variant if you fell yourself confident and wish to see your name in the Boost's changelog for the next release ;) -- Best regards, Antony Polukhin
Created ticket: https://svn.boost.org/trac/boost/ticket/13018
I might try the PR, but my git-foo is very basic...
2017-05-08 12:57 GMT+02:00 Antony Polukhin
2017-05-04 19:40 GMT+03:00 dariomt--- via Boost-users
: As seen in the std docs [1], std::get for variant provides r-value overloads.
Does Boost.Variant have them?
I'm interested in having this overload in particular:
template
U && get(variant && operand); Nope, this overload is missing. Please fill a feature request here https://svn.boost.org/trac/boost/newticket (do not forget to correctly specify the component, or the request will be lost for some time).
Or even make a pull request here https://github.com/boostorg/variant if you fell yourself confident and wish to see your name in the Boost's changelog for the next release ;)
-- Best regards, Antony Polukhin
participants (2)
-
Antony Polukhin
-
dariomt@gmail.com