Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template convert

boost::compute::convert

Synopsis

// In header: <boost/compute/functional/convert.hpp>

template<typename T> 
struct convert {
  // types
  typedef T result_type;
};

Description

The convert function converts its argument to type T (similar to static_cast<T>).

See Also:

as<T>


PrevUpHomeNext