mirror of
https://github.com/boostorg/compute.git
synced 2026-01-27 06:42:19 +00:00
46 lines
1.4 KiB
XML
46 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<header name="boost/compute/algorithm/exclusive_scan.hpp">
|
|
<namespace name="boost">
|
|
<namespace name="compute">
|
|
|
|
<!-- boost::compute::exclusive_scan(first, last, result, queue) -->
|
|
<function name="exclusive_scan">
|
|
<template>
|
|
<template-type-parameter name="InputIterator"/>
|
|
<template-type-parameter name="OutputIterator"/>
|
|
</template>
|
|
|
|
<type>OutputIterator</type>
|
|
|
|
<parameter name="first">
|
|
<paramtype>InputIterator</paramtype>
|
|
</parameter>
|
|
<parameter name="last">
|
|
<paramtype>InputIterator</paramtype>
|
|
</parameter>
|
|
<parameter name="result">
|
|
<paramtype>OutputIterator</paramtype>
|
|
</parameter>
|
|
<parameter name="queue">
|
|
<paramtype>command_queue &</paramtype>
|
|
</parameter>
|
|
|
|
<returns>
|
|
An iterator pointing to the end of the result range.
|
|
</returns>
|
|
|
|
<description>
|
|
<para>
|
|
Performs an exclusive scan on the elements in the range
|
|
[<code>first</code>, <code>last</code>) and stores the results in
|
|
the range beginning at <code>result</code>.
|
|
</para>
|
|
<para>
|
|
See also: <functionname>inclusive_scan()</functionname>
|
|
</para>
|
|
</description>
|
|
</function>
|
|
</namespace>
|
|
</namespace>
|
|
</header>
|