You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Howard Hinnant
08bce1754d
constexpr applied to <array>.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@160564 91177308-0d34-0410-b5e6-96231b3b80d8
|
13 years ago |
| .. |
|
associative
|
The rules for emplace in map, multimap, unordered_map and unordered_multimap changed a while back and I'm just now updating to these new rules. In a nutshell, you've got to know you're emplacing to a pair and use one of pair's constructors. I made one extension: If you want to emplace the key and default construct the mapped_type, you can just emplace(key), as opposed to emplace(piecewise_construct, forward_as_tuple(key), forward_as_tuple()).
|
14 years ago |
|
container.adaptors
|
noexcept for <stack>. This completes noexcept for Chapter 23 [containers].
|
15 years ago |
|
container.requirements
|
license change
|
15 years ago |
|
containers.general
|
license change
|
15 years ago |
|
sequences
|
constexpr applied to <array>.
|
13 years ago |
|
unord
|
This commit establishes a new bucket_count policy in the unordered containers: The policy now allows a power-of-2 number of buckets to be requested (and that request honored) by the client. And if the number of buckets is set to a power of 2, then the constraint of the hash to the number of buckets uses & instead of %. If the client does not specify a number of buckets, then the policy remains unchanged: a prime number of buckets is selected. The growth policy is that the number of buckets is roughly doubled when needed. While growing, either the prime, or the power-of-2 strategy will be preserved. There is a small run time cost for putting in this switch. For very cheap hash functions, e.g. identity for int, the cost can be as high as 18%. However with more typical use cases, e.g. strings, the cost is in the noise level. I've measured cases with very cheap hash functions (int) that using a power-of-2 number of buckets can make look up about twice as fast. However I've also noted that a power-of-2 number of buckets is more susceptible to accidental catastrophic collisions. Though I've also noted that accidental catastrophic collisions are also possible when using a prime number of buckets (but seems far less likely). In short, this patch adds an extra tuning knob for those clients trying to get the last bit of performance squeezed out of their hash containers. Casual users of the hash containers will not notice the introduction of this tuning knob. Those clients who swear by power-of-2 hash containers can now opt-in to that strategy. Clients who prefer a prime number of buckets can continue as they have.
|
14 years ago |
|
Copyable.h
|
Fixing whitespace problems
|
15 years ago |
|
DefaultOnly.h
|
Fixing whitespace problems
|
15 years ago |
|
Emplaceable.h
|
Suppress some warings in the tests.
|
15 years ago |
|
MoveOnly.h
|
Changed __config to react to all of clang's currently documented has_feature flags, and renamed _LIBCPP_MOVE to _LIBCPP_HAS_NO_RVALUE_REFERENCES to be more consistent with the rest of the libc++'s flags, and with clang's nomenclature.
|
15 years ago |
|
NotConstructible.h
|
Fixing whitespace problems
|
15 years ago |
|
iterators.h
|
Fixing whitespace problems
|
15 years ago |
|
nothing_to_do.pass.cpp
|
license change
|
15 years ago |
|
stack_allocator.h
|
Fixing whitespace problems
|
15 years ago |
|
test_allocator.h
|
Changed __config to react to all of clang's currently documented has_feature flags, and renamed _LIBCPP_MOVE to _LIBCPP_HAS_NO_RVALUE_REFERENCES to be more consistent with the rest of the libc++'s flags, and with clang's nomenclature.
|
15 years ago |
|
test_compare.h
|
Fixing whitespace problems
|
15 years ago |
|
test_hash.h
|
Fixing whitespace problems
|
15 years ago |