Function size_min¶
function size_min(size_t) base¶
Returns the minimum of a single value.
| x | The value to return. |
x. |
Fully qualified name: kfr::size_min(size_t)
Declared at base/shape.hpp:125
Function size_min¶
function size_min(size_t, size_t, Ts...) base¶
template <typename... Ts>
KFR_INTRINSIC constexpr size_t size_min(size_t x, size_t y, Ts... rest) noexcept { … } Returns the minimum of two or more values (recursively).
| Ts | Types of the remaining arguments (deduced). |
| x | First value. |
| y | Second value. |
| rest | Remaining values. |
| The smallest of all the arguments. |
Fully qualified name: kfr::size_min(size_t, size_t, Ts...)
Declared at base/shape.hpp:139
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.