Fork me on GitHub
 All Classes Files Functions Variables Groups Pages
Public Methods | List of all members
cusp::constant_functor< T > Struct Template Reference

Detailed description

template<typename T>
struct cusp::constant_functor< T >

constant_functor is a function object returns a constant value, ignores the input.

Parameters
Tis a model of Assignable, and if x is an object of type T, then x=c must be defined and must have a return type that is convertible to T.

Overview constant_functor is a function object. Specifically, it is an Adaptable Unary Function. If f(c) is an object of class constant_functor<T>, and x is an object of class T, then f(x) returns c.

Example
#include <cusp/array1d.h>
#include <cusp/print.h>
int main()
{
// create an array with 5 entries from 0 to 4
// allocate size of transformed output array
// compute output vector as transform of tens
thrust::transform(count.begin(), count.end(), v.begin(), cusp::constant_functor<int>());
// v = [0, 0, 0, 0, 0]
}

Definition at line 426 of file functional.h.

#include <functional.h>

Inheritance diagram for cusp::constant_functor< T >:

Public Methods

__host__ __device__ constant_functor (const T val=0)
 
__host__ __device__ T operator() (const T &x) const