#include <common.h>
Public Member Functions | |
any_container ()=default | |
template<typename Container > | |
any_container (const Container &c) | |
template<typename TIn , typename = enable_if_t<std::is_convertible<TIn, T>::value>> | |
any_container (const std::initializer_list< TIn > &c) | |
template<typename It , typename = enable_if_t<is_input_iterator<It>::value>> | |
any_container (It first, It last) | |
any_container (std::vector< T > &&v) | |
operator std::vector< T > && () && | |
std::vector< T > & | operator* () |
const std::vector< T > & | operator* () const |
std::vector< T > * | operator-> () |
const std::vector< T > * | operator-> () const |
Private Attributes | |
std::vector< T > | v |
Definition at line 1173 of file wrap/pybind11/include/pybind11/detail/common.h.
|
default |
|
inline |
Definition at line 1181 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1190 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1195 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1199 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1203 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1206 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1207 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1210 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1211 of file wrap/pybind11/include/pybind11/detail/common.h.
|
private |
Definition at line 1174 of file wrap/pybind11/include/pybind11/detail/common.h.