• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:STL

111 | ``std::string``                    | STL dynamic UTF-8 string  | :file:`pybind11/pybind11.h`   |
113 | ``std::u16string`` | STL dynamic UTF-16 string | :file:`pybind11/pybind11.h` |
115 | ``std::u32string`` | STL dynamic UTF-32 string | :file:`pybind11/pybind11.h` |
117 | ``std::wstring`` | STL dynamic wide string | :file:`pybind11/pybind11.h` |
119 | ``std::string_view``, | STL C++17 string views | :file:`pybind11/pybind11.h` |
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` |
154 | ``std::function<...>`` | STL polymorphic function | :file:`pybind11/functional.h` |
156 | ``std::chrono::duration<...>`` | STL time duration | :file:`pybind11/chrono.h` |
158 | ``std::chrono::time_point<...>`` | STL date/time | :file:`pybind11/chrono.h` |