summaryrefslogtreecommitdiff
path: root/Cython/Includes/libcpp
Commit message (Expand)AuthorAgeFilesLines
* Add missing load_factor() method on libcpp/unordered_multimap (GH-5157)Dobatymo2022-11-301-0/+1
* Add missing C++17/20 STL functions and methods (#5101)Jonathan Helgert2022-10-296-0/+31
* Add declarations for C++20's Bit manipulation functions (GH-4962)Jonathan Helgert2022-08-091-0/+31
* Add distributions to `libcpp.random`. (#4762)Till Hoffmann2022-06-071-2/+142
* Add "mt19973_64" declarations to "libcpp.random" (GH-4818)Wenjun Si2022-05-311-1/+13
* Add C++ STL `sample` for sampling without replacement. (GH-4751)Till Hoffmann2022-04-211-2/+2
* Add mt19937 random number generator to libcpp. (GH-4746)Till Hoffmann2022-04-201-0/+14
* Add missing C++ STL iterator declarations and correct their const/non-const b...Max Bachmann2022-04-199-154/+659
* Add cbegin/cend/crbegin/crend to C++ STL container declarations (GH-4530)Max Bachmann2022-04-158-2/+42
* Add exception handling for libcpp::stack::pushJulien Jerphanion2022-04-011-1/+1
* Fix some C++ template definitions in libcpp (GH-4531)Max Bachmann2021-12-282-6/+6
* Add emplace_back to C++ vector declarations (GH-4527)Max Bachmann2021-12-251-0/+2
* Add std::optional declarations for C++17 (GH-3294)Evgeny Yakimov2021-12-171-0/+34
* Add merge and set operations of the C++ algorithm library (GH-4462)Jonathan Helgert2021-11-181-0/+37
* Add missing min/max, comparison and permutation operations of C++ algorithm l...Jonathan Helgert2021-11-111-0/+29
* Add most of the C++17 numeric functions to libcpp.numeric (GH-4423)Jonathan Helgert2021-11-021-0/+101
* Fix libcpp map/set/multiset/unordered type issues (GH-4410)Dobatymo2021-10-224-150/+162
* Add C++ multimap/unordered_multimap (GH-4419)Dobatymo2021-10-222-0/+140
* Add some missing functions to libcpp maps and string (GH-4395)account-login2021-10-203-0/+4
* Fix wrong type in unordered_multiset::swap() (GH-4408)Dobatymo2021-10-151-1/+1
* Add missing multiset class to the standard library bindings (GH-4273)da-woods2021-07-192-10/+119
* Add missing "max_element()" in libcpp.algorithms (GH-4271)da-woods2021-07-181-0/+2
* Merge branch '0.29.x'Stefan Behnel2021-07-131-5/+10
|\
| * Fix "std::string::npos" in 'libcpp.string' and add missing C++ string methods...Janek Bevendorff2021-07-131-77/+146
| * Add missing unordered_map template defaults (GH-3686)will2020-07-071-1/+1
| * Add std::move wrapper to utility libraryOmer Ozarslan2020-04-071-0/+14
* | Fix "std::string::npos" in 'libcpp.string' and add missing C++ string methods...Janek Bevendorff2021-07-131-80/+116
* | Add support for C++17 execution policy parameter (GH-3790)Ashwin Srinath2021-05-252-0/+112
* | Add operator= to shared_ptr for assignments to base classes (GH-4185)Søren Fuglede Jørgensen2021-05-241-0/+1
* | Enable usage of std::move() only in the supported versions of MSVC (GH-4191)Max Bachmann2021-05-231-1/+2
* | Add C++ "to_string()" function to declarations.Stefan Behnel2021-05-071-0/+11
* | Add some overloaded C++ string methods that we missing (actually using option...Stefan Behnel2021-04-301-19/+30
* | Catch more exceptions from C++ standard containers (GH-4079)Max Bachmann2021-04-264-39/+39
* | Add missing unordered_map template defaults (GH-3686)will2020-07-071-1/+1
* | Add partitioning and sorting operations to libcpp.algorithm (GH-3202)Matthew Edwards2020-04-112-41/+72
* | Cython header file for C++ `std::atomic` type (GH-3469)da-woods2020-03-311-0/+60
* | Add std::move wrapper to utility libraryOmer Ozarslan2020-02-151-0/+14
* | Add skeleton, functions of <numeric> library (#3332)Chris Gyurgyik2020-02-101-0/+23
* | Add most modifying sequence operations to libcpp.algorithm (GH-3188)Matthew Edwards2019-10-212-2/+53
* | Add most non-modifying sequence operations to libcpp.algorithm (GH-3179)Matthew Edwards2019-10-163-33/+79
|/
* Merge pull request #2207 from vallsv/improve-cpp11-containersscoder2018-08-117-16/+35
|\
| * Fix const_iteratorValentin Valls2018-04-202-8/+4
| * Add const_at to unordered mapValentin Valls2018-04-201-1/+2
| * Add erase/insert using double iterator to setValentin Valls2018-04-201-3/+3
| * Update unordered_map to match C++11Valentin Valls2018-04-201-2/+6
| * Update unordered_set to match C++11Valentin Valls2018-04-201-4/+12
| * Add shrink_to_fit to dequeValentin Valls2018-04-201-0/+3
| * Add const at to mapValentin Valls2018-04-201-0/+1
| * Add swap to queuesValentin Valls2018-04-201-0/+5
| * Add const data to vectorValentin Valls2018-04-201-0/+1