Searched defs:any_container (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h771 class any_container { class in struct:overload_cast_impl
778 any_container(It first, It last) : v(first, last) { } function in class:overload_cast_impl::any_container
782 any_container(const Container &c) : any_container(std::begin(c), std::end(c)) { } function in class:overload_cast_impl::any_container
787 any_container(const std::initializer_list<TIn> &c) : any_container(c.begin(), c.end()) { } function in class:overload_cast_impl::any_container
790 any_container(std::vector<T> &&v) : v(std::move(v)) { } function in class:overload_cast_impl::any_container

Completed in 9 milliseconds