10#include "../namespace.hpp"
22 using type = std::remove_cv_t<std::remove_reference_t<T>>;
26 using remove_cvref_t =
typename remove_cvref<T>::type;
29 struct conjunction : std::true_type
33 struct conjunction<B1> : B1
36 template <
class B1,
class... Bn>
37 struct conjunction<B1, Bn...> : std::conditional_t<bool(B1::value), conjunction<Bn...>, B1>
Namespace to for standard types that are not available in C++14.
Definition variant_helper.hpp:20
Root namespace for the Image Manager interface.
Definition c_bayer_to_rgb.h:17