Skip to content

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)

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)

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 &)

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 &)

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])

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])

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.