Function make_univector¶
function make_univector(T *, size_t) base¶
template <typename T>
KFR_INTRINSIC univector_ref<T> make_univector(T* data, size_t size) Creates univector from data and size
Fully qualified name: kfr::make_univector(T *, size_t)
Declared at base/univector.hpp:685
Function make_univector¶
function make_univector(const T *, size_t) base¶
template <typename T>
KFR_INTRINSIC univector_ref<const T> make_univector(const T* data, size_t size) Creates univector from data and size
Fully qualified name: kfr::make_univector(const T *, size_t)
Declared at base/univector.hpp:692
Function make_univector¶
function make_univector(const Container &) base¶
template <has_data_size Container, typename T = value_type_of<Container>>
KFR_INTRINSIC univector_ref<const T> make_univector(const Container& container) Creates univector from a container (must have data() and size() methods)
Fully qualified name: kfr::make_univector(const Container &)
Declared at base/univector.hpp:699
Function make_univector¶
function make_univector(Container &) base¶
template <has_data_size Container, typename T = value_type_of<Container>>
KFR_INTRINSIC univector_ref<T> make_univector(Container& container) Creates univector from a container (must have data() and size() methods)
Fully qualified name: kfr::make_univector(Container &)
Declared at base/univector.hpp:706
Function make_univector¶
function make_univector(T (&)[N]) base¶
template <typename T, size_t N>
KFR_INTRINSIC univector_ref<T> make_univector(T (&arr)[N]) Creates univector from a sized array
Fully qualified name: kfr::make_univector(T (&)[N])
Declared at base/univector.hpp:713
Function make_univector¶
function make_univector(const T (&)[N]) base¶
template <typename T, size_t N>
KFR_INTRINSIC univector_ref<const T> make_univector(const T (&arr)[N]) Creates univector from a sized array
Fully qualified name: kfr::make_univector(const T (&)[N])
Declared at base/univector.hpp:720