![]() |
VCCC
2024.05
VisualCamp Common C++ library
|
#include "vccc/__type_support/detail/range_at.hpp"
#include "vccc/__type_support/core.hpp"
#include "vccc/__type_support/cast.hpp"
#include "vccc/type_traits.hpp"
Go to the source code of this file.
Namespaces | |
vccc | |
Functions | |
template<std::size_t I, typename T , std::enable_if_t< is_tuple_like< std::decay_t< T >>::value, int > = 0> | |
constexpr decltype(auto) | at (T &&t) noexcept |
Return i-th element of tuple-like object. More... | |
template<std::size_t i, std::size_t j, typename C , typename T > | |
constexpr decltype(auto) | at (T &&t) |
returns cv::saturate_cast<C>(vccc::at<i, j>(t)) More... | |
template<typename ... Args> | |
constexpr internal::bind_obj< Args... > | bind_at (Args &&... args) |
call at<...>(...) to args... More... | |