template struct cv::cudev::UnaryNegate

#include <functional.hpp>

template <class Predicate>
struct UnaryNegate: public cv::cudev::unary_function
{
    // fields

    Predicate pred;

    // methods

    __device__ __forceinline__ Predicate::result_type
    operator()(typename TypeTraits<typename Predicate::argument_type>::parameter_type x) const;
};

Inherited Members

public:
    // typedefs

    typedef _Arg argument_type;
    typedef _Result result_type;