![]() |
VCCC
2024.05
VisualCamp Common C++ library
|
Go to the source code of this file.
Namespaces | |
vccc | |
Functions | |
template<typename To , typename From , std::enable_if_t<!std::is_same< To, From >::value, int > = 0> | |
std::enable_if_t< disjunction< is_tuple_like< To >, is_tuple_like< From > >::value, To > | convert_to (const From &from) |
template<typename To , std::size_t n, typename From , std::enable_if_t<!std::is_same< To, From >::value, int > = 0> | |
std::enable_if_t< disjunction< is_tuple_like< To >, is_tuple_like< From > >::value, To > | convert_to (const From &from) |
convert with specifying the converting size convert to container types: same size as n convert to opencv types: fill rest with 0 More... | |
template<typename To > | |
decltype(auto) | convert_to (To &&from) |
converting to same type More... | |
template<typename To > | |
To | convert_to (const To &from) |