Skip to content

Commit a0fc47f

Browse files
author
Povilas Kanapickas
committed
Index: Add C++11 division functions and related types
1 parent 5009fe4 commit a0fc47f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

index-functions-cpp.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2602,6 +2602,24 @@
26022602
<function name="std::fabs" link="cpp/numeric/math/fabs"/>
26032603
<function name="std::div" link="cpp/numeric/math/div"/>
26042604
<function name="std::ldiv" link="cpp/numeric/math/div"/>
2605+
<function name="std::lldiv" link="cpp/numeric/math/div" since="c++11"/>
2606+
<function name="std::imaxdiv" link="cpp/numeric/math/div" since="c++11"/>
2607+
<class name="std::div_t" link="cpp/numeric/math/div">
2608+
<variable name="quot" link="."/>
2609+
<variable name="rem" link="."/>
2610+
</class>
2611+
<class name="std::ldiv_t" link="cpp/numeric/math/div">
2612+
<variable name="quot" link="."/>
2613+
<variable name="rem" link="."/>
2614+
</class>
2615+
<class name="std::lldiv_t" link="cpp/numeric/math/div" since="c++11">
2616+
<variable name="quot" link="."/>
2617+
<variable name="rem" link="."/>
2618+
</class>
2619+
<class name="std::imaxdiv_t" link="cpp/numeric/math/div" since="c++11">
2620+
<variable name="quot" link="."/>
2621+
<variable name="rem" link="."/>
2622+
</class>
26052623
<function name="std::fmod" link="cpp/numeric/math/fmod"/>
26062624
<function name="std::remainder" link="cpp/numeric/math/remainder"/>
26072625
<function name="std::remquo" link="cpp/numeric/math/remquo"/>

0 commit comments

Comments
 (0)