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

Detailed description

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

modulus_value is a function object that computes the modulus of a given element by a constant value.

Parameters
Tis a model of Assignable, and if x is an object of type T, then xc must be defined and must have a return type that is convertible to T.
Overview
modulus_value is a function object. Specifically, it is an Adaptable Unary Function. If f(c) is an object of class modulus_value<T>, and x is an object of class T, then f(x) returns xc.
Example
#include <cusp/array1d.h>
#include <cusp/print.h>
int main()
{
// create an array with 5 entries all set to 10
// allocate size of transformed output array
// compute output vector as transform of tens
thrust::transform(tens.begin(), tens.end(), v.begin(), cusp::modulus_value<int>(3));
// v = [1, 1, 1, 1, 1]
}

Definition at line 178 of file functional.h.

#include <functional.h>

Inheritance diagram for cusp::modulus_value< T >:

Public Methods

__host__ __device__ modulus_value (const T value=T(0))