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

#include <functional.h>

Inheritance diagram for cusp::less_value< T >:

Public Methods

_CCCL_HOST_DEVICE less_value (const T value)
 Construct with the given constant value.
 

Detailed description

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

less_value is a function object that compares a given element with a constant value.

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 less_value is a function object. Specifically, it is an Adaptable Unary Function. If f(c) is an object of class less_value<T>, and x is an object of class T, then f(x) returns x<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::less_value<int>(3));
// v = [1, 1, 1, 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.
less_value is a function object that compares a given element with a constant value.
Definition functional.h:351

Definition at line 350 of file functional.h.

Constructor & Destructor Documentation

◆ less_value()

template<typename T >
_CCCL_HOST_DEVICE cusp::less_value< T >::less_value ( const T  value)
inline

Construct with the given constant value.

Definition at line 354 of file functional.h.