1363 Commits

Author SHA1 Message Date
joaquintides
2eebe157fd refactored proxy_erase to reduce template instantiations and strengthen misuse avoidance 2023-06-19 08:21:13 -07:00
Christian Mazakas
2f7bba0c21 Implement proxy erase(iterator) 2023-06-19 08:21:13 -07:00
Christian Mazakas
f51070ab21 Update free function erase_if() to support non-copyable predicates 2023-06-16 14:16:26 -07:00
Christian Mazakas
ac5a99da31 Add max_size() impl 2023-06-15 22:15:57 -07:00
Christian Mazakas
6fed6ea5ad Remove extraneous fwd.hpp include from public facing headers 2023-06-15 22:15:57 -07:00
Christian Mazakas
c51c06492a Update iterator range insert to use emplace() vs insert() to avoid copies in certain cases 2023-06-15 22:15:57 -07:00
Christian Mazakas
f604efe866 Add missing const reference qualifiers to allocator_type constructor parameters 2023-06-15 22:15:57 -07:00
Christian Mazakas
e8ec858313 Refactor type policies used by containers into their own dedicated headers 2023-06-15 22:15:57 -07:00
Christian Mazakas
bc8996559b Remove unnecessary backticks from static_assert() messages 2023-06-15 22:15:57 -07:00
Christian Mazakas
449e1a30d3 Remove outdated reference to proposed synopsis 2023-06-15 22:15:57 -07:00
joaquintides
c2484f05f0 avoided old GCC/Clang hiccup with {} for aggregate copy construction 2023-06-09 21:31:30 +02:00
joaquintides
07a8b2b14d stylistic 2023-06-09 08:55:25 -07:00
joaquintides
2eac49f0ed added copy ctor for cache_aligned_size_control 2023-06-09 08:55:25 -07:00
joaquintides
6a8d7857e2 fixed unqualified swap call 2023-06-09 08:55:25 -07:00
joaquintides
ef34ec5e87 added missing #include 2023-06-09 08:55:25 -07:00
joaquintides
518a5d2e1e refactored padding into a clean design 2023-06-09 08:55:25 -07:00
joaquintides
3ea8a768ca added padding between and around ml and size_ 2023-06-09 08:55:25 -07:00
joaquintides
64f9370fff implemented cacheline alignment without extended alignas 2023-06-07 11:30:52 +02:00
joaquintides
ca193de243 added missing #include 2023-06-07 11:28:00 +02:00
Christian Mazakas
68ddaba57a Update cfoa's fwd header to be in line with the others 2023-06-05 15:47:41 -07:00
Christian Mazakas
8877d21237 Replace dependency on SmartPtr with primitives in Core 2023-06-02 14:14:18 -07:00
Christian Mazakas
44c50cd2ea Resolve potential ambiguities during insertion by introducing a member function template 2023-06-01 14:19:14 -07:00
joaquintides
7aaa2e9452 polished BOOST_UNORDERED_PREFETCH[_ELEMENTS] 2023-05-28 19:09:14 +02:00
Christian Mazakas
950e640fcf Update concurrent_table to use macro-based prefetching 2023-05-26 21:06:01 -07:00
Christian Mazakas
7874625c08 Replace prefetch_elements() with macro so builtins aren't optimized away by DSE 2023-05-26 20:56:52 -07:00
Christian Mazakas
2ab4225473 Add workaround for gcc-12 and above where the prefetch call is ignored 2023-05-26 08:16:02 -07:00
joaquintides
253a9bccf6 fixed leak in throwing allocator-extended move ctor 2023-05-24 09:19:31 +02:00
Christian Mazakas
4a416501c8 Fix misuse of ctad macro 2023-05-17 10:14:45 -07:00
Christian Mazakas
bf06fa97e3 Add deduction guides 2023-05-17 09:38:29 -07:00
Christian Mazakas
fcf6fee0f6 Make usage of forceinline consistent with the underlying concurrent_table 2023-05-16 15:42:47 -07:00
Christian Mazakas
8ddfc8ec7a Update execution policies to accept by forwarding reference 2023-05-16 14:33:41 -07:00
Christian Mazakas
5f249bc681 Add fwd header 2023-05-16 13:31:35 -07:00
Christian Mazakas
6295c7f0d4 Add free function erase_if() 2023-05-15 13:40:33 -07:00
Christian Mazakas
c3879e238d Add free function swap() 2023-05-15 07:54:19 -07:00
joaquintides
9260bff8f8 editorial 2023-05-15 10:20:45 +02:00
joaquintides
81480feeb4 fixed regression at unprotected_emplace 2023-05-12 12:45:31 +02:00
joaquintides
d615a08f76 made operator [==|!=] templated again to accommodate fwd declarations 2023-05-12 12:33:27 +02:00
joaquintides
dacc1c8234 made operator[==|!=] non-templated 2023-05-12 11:41:50 +02:00
joaquintides
511e2b3272 refactored to provide equality comparison from table_core 2023-05-12 11:24:20 +02:00
Christian Mazakas
21afc69894 Add initial tests for rehash(), reserve() 2023-05-10 13:22:02 -07:00
joaquintides
02197674f4 prevented VS C4800 warning 2023-05-06 12:44:07 +02:00
Christian Mazakas
f0fe62d6ab Add count(), contains() 2023-05-05 15:41:23 -07:00
Christian Mazakas
53328766b9 Return size_type instead of size_t 2023-05-05 15:41:08 -07:00
Christian Mazakas
5b775345ba Clean up concurrent_table's merge impl 2023-05-05 11:47:20 -07:00
Christian Mazakas
99b0868283 Add initial impl of merge() 2023-05-05 10:20:52 -07:00
joaquintides
26924c73b9 fixed space reservation in concurrent_table::operator=(std::initializer_list) 2023-05-04 18:09:28 +02:00
Christian Mazakas
4fb7751b55 Add missing #include 2023-05-03 11:37:32 -07:00
Christian Mazakas
2ea0dbf30e Add impl of member function swap() 2023-05-02 13:44:27 -07:00
Christian Mazakas
40c4d456f3 Clean up for CI 2023-05-01 15:21:25 -07:00
Christian Mazakas
011b7a5969 Add initial impl of clear 2023-05-01 11:58:58 -07:00