mirror of
https://github.com/boostorg/compute.git
synced 2026-01-27 18:52:15 +00:00
42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<header name="boost/compute/algorithm/lower_bound.hpp">
|
|
<namespace name="boost">
|
|
<namespace name="compute">
|
|
|
|
<!-- boost::compute::lower_bound(first, last, value, queue) -->
|
|
<function name="lower_bound">
|
|
<template>
|
|
<template-type-parameter name="InputIterator"/>
|
|
<template-type-parameter name="T"/>
|
|
</template>
|
|
|
|
<type>InputIterator</type>
|
|
|
|
<parameter name="first">
|
|
<paramtype>InputIterator</paramtype>
|
|
</parameter>
|
|
<parameter name="last">
|
|
<paramtype>InputIterator</paramtype>
|
|
</parameter>
|
|
<parameter name="value">
|
|
<paramtype>const T&</paramtype>
|
|
</parameter>
|
|
<parameter name="queue">
|
|
<paramtype>command_queue &</paramtype>
|
|
</parameter>
|
|
|
|
<description>
|
|
<para>
|
|
Returns an iterator pointing to the first element in the range
|
|
sorted range [<code>first</code>, <code>last</code>) that is not
|
|
less than <code>value</code>.
|
|
</para>
|
|
<para>
|
|
See also: <functionname>upper_bound()</functionname>
|
|
</para>
|
|
</description>
|
|
</function>
|
|
</namespace>
|
|
</namespace>
|
|
</header>
|