-
Melhorar a performance do percurso de tabelas usando hashsets
-
```
1. One stack per transaction
2. Contains the commands for that transaction => undo() in correct order
3. Requires classifying which commands read/write, how to undo them
```
Original issue report…
-
I noticed this library uses `std::collections::HashSet`. Is there a reason for that over `hashbrown::HashSet`? Standard's implementation is backed by hashbrown, so functionally there's no difference. …
-
Having support for Sets would be great.
It is possible to do:
```java
pd.DataFrame([[{'1': None}]], columns =["s"]).to_feather('/tmp/x')
```
But using a Set instead of a dictionary is not …
-
Hi,
I am using the Nim 2.2.0 to compile examples
```
nim -v
Nim Compiler Version 2.2.0 [Windows: amd64]
Compiled at 2024-10-02
Copyright (c) 2006-2024 by Andreas Rumpf
```
The errors is …
-
To ease creation of a chart with multiple data sets, adding the AddRange method to the Dataset HashSet would be beneficial.
-
Could you please support something like this? https://docs.rs/hashbrown/latest/hashbrown/struct.HashSet.html#method.get_or_insert_with
-
**Describe the bug**
Two different instances of `Name`, built with and without trailing dot hashes to different values, yet they are considered equal by the PartialEq implementation. This makes for s…
-
In Python I've often found the `set.pop()` method useful which would remove and return a single arbitrary element of the set (or raise if empty). In Rust this should return an `Option`, of course.
I …
-
Hello, I'm coming from a discussion in https://github.com/dotnet/runtime/issues/47113 and basically basing on the response https://github.com/dotnet/runtime/issues/47113#issuecomment-762256639 I'd lik…