std.cfg: Added support for std::rotate() and std::rotate_copy().

This commit is contained in:
orbitcowboy 2019-06-06 15:04:00 +02:00
parent 2b816d09fb
commit a6e681f71e
1 changed files with 37 additions and 0 deletions

View File

@ -6987,6 +6987,43 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
<not-uninit/>
</arg>
</function>
<!-- template <class ForwardIterator, class OutputIterator> OutputIterator std::rotate_copy (ForwardIterator first, ForwardIterator middle, ForwardIterator last, OutputIterator result); -->
<function name="std::rotate_copy">
<leak-ignore/>
<returnValue type="iterator" container="1"/>
<noreturn>false</noreturn>
<arg nr="1" direction="in">
<not-uninit/>
<iterator container="1" type="first"/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<iterator container="1" type="middle"/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<iterator container="1" type="last"/>
</arg>
<arg nr="4" direction="out"/>
</function>
<!-- template <class ForwardIterator> ForwardIterator std::rotate (ForwardIterator first, ForwardIterator middle, ForwardIterator last); -->
<function name="std::rotate">
<use-retval/>
<returnValue type="iterator" container="1"/>
<noreturn>false</noreturn>
<arg nr="1" direction="in">
<not-uninit/>
<iterator container="1" type="first"/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<iterator container="1" type="middle"/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<iterator container="1" type="last"/>
</arg>
</function>
<!-- InputIterator std::adjacent_find(InputIterator first, InputIterator last) -->
<function name="std::adjacent_find">
<use-retval/>