#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 1154 of file wrap/pybind11/include/pybind11/detail/common.h.
|
default |
|
inline |
Definition at line 1162 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1171 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1176 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1180 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1184 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1187 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1188 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1191 of file wrap/pybind11/include/pybind11/detail/common.h.
|
inline |
Definition at line 1192 of file wrap/pybind11/include/pybind11/detail/common.h.
|
private |
Definition at line 1155 of file wrap/pybind11/include/pybind11/detail/common.h.