CUSP
Loading...
Searching...
No Matches
cusp::constant_functor< T > Struct Template Reference

#include <functional.h>

Public Methods

_CCCL_HOST_DEVICE constant_functor (const T val=0)
 Construct with the given constant val.
 
_CCCL_HOST_DEVICE T operator() (const T &x) const
 Return the stored constant, ignoring input x.
 

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]
}
1D array of elements that may reside in "host" or "device" memory space
The array1d class is a 1D vector container that may contain elements stored in "host" or "device" mem...
Definition array1d.h:99
Specialized array1d_view wrapping thrust::counting_iterator.
Definition array1d.h:566
Defines templated convenience functors analogous to what is found in thrust's functional.
void print(const Printable &p)
print a textual representation of an object
Print textual representation of an object.
constant_functor is a function object returns a constant value, ignores the input.
Definition functional.h:435

Definition at line 434 of file functional.h.

Constructor & Destructor Documentation

◆ constant_functor()

template<typename T >
_CCCL_HOST_DEVICE cusp::constant_functor< T >::constant_functor ( const T  val = 0)
inline

Construct with the given constant val.

Definition at line 442 of file functional.h.

Member Function Documentation

◆ operator()()

template<typename T >
_CCCL_HOST_DEVICE T cusp::constant_functor< T >::operator() ( const T &  x) const
inline

Return the stored constant, ignoring input x.

Definition at line 446 of file functional.h.