Lines Matching refs:stl
130 | ``std::array<T, Size>`` | STL static array | :file:`pybind11/stl.h` |
132 | ``std::vector<T>`` | STL dynamic array | :file:`pybind11/stl.h` |
134 | ``std::deque<T>`` | STL double-ended queue | :file:`pybind11/stl.h` |
136 | ``std::valarray<T>`` | STL value array | :file:`pybind11/stl.h` |
138 | ``std::list<T>`` | STL linked list | :file:`pybind11/stl.h` |
140 | ``std::map<T1, T2>`` | STL ordered map | :file:`pybind11/stl.h` |
142 | ``std::unordered_map<T1, T2>`` | STL unordered map | :file:`pybind11/stl.h` |
144 | ``std::set<T>`` | STL ordered set | :file:`pybind11/stl.h` |
146 | ``std::unordered_set<T>`` | STL unordered set | :file:`pybind11/stl.h` |
148 | ``std::optional<T>`` | STL optional type (C++17) | :file:`pybind11/stl.h` |
150 | ``std::experimental::optional<T>`` | STL optional type (exp.) | :file:`pybind11/stl.h` |
152 | ``std::variant<...>`` | Type-safe union (C++17) | :file:`pybind11/stl.h` |