The following expression using is_assignable returns true when using gcc 4.7 and boost 1.49:
typedef boost::function<void()> F;
std::is_assignable<F, std::nullptr_t>::value
However, this code fails to compile:
boost::function<void()> f;
f = nullptr;
producing these error messages:
In file included from c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/detail/maybe_include.hpp:13:0,
from c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/detail/function_iterate.hpp:14,
from c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/preprocessor/iteration/detail/iter/forward1.hpp:47,
from c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function.hpp:64,
from ..\main.cpp:8:
c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/function_template.hpp: In instantiation of 'static void boost::detail::function::void_function_obj_invoker0<FunctionObj, R>::invoke(boost::detail::function::function_buffer&) [with FunctionObj = std::nullptr_t; R = void]':
c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/function_template.hpp:907:60: required from 'void boost::function0<R>::assign_to(Functor) [with Functor = std::nullptr_t; R = void]'
c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/function_template.hpp:722:7: required from 'boost::function0<R>::function0(Functor, typename boost::enable_if_c<boost::type_traits::ice_not<boost::is_integral<Functor>::value>::value, int>::type) [with Functor = std::nullptr_t; R = void; typename boost::enable_if_c<boost::type_traits::ice_not<boost::is_integral<Functor>::value>::value, int>::type = int]'
c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/function_template.hpp:1042:16: required from 'boost::function<R()>::function(Functor, typename boost::enable_if_c<boost::type_traits::ice_not<boost::is_integral<Functor>::value>::value, int>::type) [with Functor = std::nullptr_t; R = void; typename boost::enable_if_c<boost::type_traits::ice_not<boost::is_integral<Functor>::value>::value, int>::type = int]'
c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/function_template.hpp:1083:5: required from 'typename boost::enable_if_c<boost::type_traits::ice_not<boost::is_integral<Functor>::value>::value, boost::function<R()>&>::type boost::function<R()>::operator=(Functor) [with Functor = std::nullptr_t; R = void; typename boost::enable_if_c<boost::type_traits::ice_not<boost::is_integral<Functor>::value>::value, boost::function<R()>&>::type = boost::function<void()>&]'
..\main.cpp:172:6: required from here
c:\mingw\bin\../lib/gcc/i686-pc-mingw32/4.7.0/../../../../include/boost/function/function_template.hpp:153:11: error: '* f' cannot be used as a function
Additionally, this expression returns false:
typedef boost::function<void()> G;
std::is_assignable<G, decltype(NULL)>::value
but this code does compile:
boost::function<void()> g;
g = NULL;
The results of is_assignable don't seem to properly reflect the functionality of boost::function. Am I doing something wrong here? (I'm having trouble making sense of the error messages.)
I thought the type traits were supposed to be a reliable way of determining the functionality of the classes used in templates. Are the type traits provided in C++11 simply incompatible with boost::function?
To give this some context, I've been working on several personal projects to better familiarize myself with the new features of C++11. For this particular project, I'm attempting to create a class that stores a callable function that can be "deactivated". This is roughly what I'm trying to do:
template <typename F>
class callable_function
{
public:
callable_function(F func) : func_(func)
{
/* func_ is initially active */
}
void call()
{
if (/* func_ is active */) func_();
}
void deactivate()
{
/* set func_ to deactive */
}
private:
F func_;
};
For the /* func_ is active */ and /* set func_ to deactive */ blocks, I want to provide two different implementations that are selected at compile time depending on the properties of F. If nullptr can be assigned to func_ and func_ can be used in a boolean context, then I want to use the following (which is what gets selected for built-in function pointers and std::function):
template <typename F>
class callable_function
{
public:
callable_function(F func) : func_(func) {}
void call()
{
if (func_) func_();
}
void deactivate()
{
func_ = nullptr;
}
private:
F func_;
};
If nullptr cannot be assigned to func_, then I want to store an additional boolean value within the class that stores the "active" status. This implementation is selected for functors and lambda functions:
template <typename F>
class callable_function
{
public:
callable_function(F func) : func_(func), active_(true) {}
void call()
{
if (active_) func_();
}
void deactivate()
{
active_ = false;
}
private:
F func_;
bool active_;
};
Since nullptr currently cannot be assigned to boost::function, I would expect the second implementation to be chosen. However, since is_assignable is returning true for boost::function and nullptr, the first implementation is selected instead, which results in a compilation error in the deactivate function.
std::functioninstead ofboost::function? – Jesse Good Apr 19 '12 at 1:36std::function, andboost::function. My current version works for everything except forboost::function, due to the issue discussed above. Since this is just a learning project, it doesn't really matter, but if there are any caveats or "gotchas" to the C++11 type traits, I'd like to understand what they are. – Michael Pierce Apr 19 '12 at 2:46boost::function.std::functionhas aoperator=which takes astd::nullptr_thoweverboost::functionlacks this capability (if you notice the assignment operator in your error message itsboost::function<R()>::operator=(Functor)). So, C++11 type traits is correct in returningtruebecause it is assignable, howeverboost::functionlacks the functionality to handlenullptr. Also,std::is_assignable<G, decltype(NULL)>::valueis correct in returning false becausedecltype(NULL)is of typeint. – Jesse Good Apr 20 '12 at 5:50std::is_assignableis working. I had assumed it was searching for a function with a valid interface and definition using the given template arguments. However, that is incorrect: it only searches for one with a valid interface. In the case ofstd::nullptr_t,boost::functiondoes have a matching assignment operator, as you mentioned,boost::function<R()>::operator=(Functor). This causesstd::is_assignable<F, std::nullptr_t>to returntrue, but the code in its definition cannot correctly assignnullptr, which causes the compilation error. – Michael Pierce Apr 20 '12 at 14:48decltype(NULL) x = 1;. This code works because the expressiondecltype(NULL)givesint. However, you cannot assign1to a function object. The problem is NULL is weakly typed and prefersintover pointer type (you can see the same thing with overloaded functions, i.e. try passingNULLto an overloaded function takingintand pointer type and see which one is selected). – Jesse Good Apr 20 '12 at 20:54