idx
maps, sets and vectors with on-demand secondary indexes. (by wotbrew)
staticvec
Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics. (by slightlyoutofphase)
idx | staticvec | |
---|---|---|
1 | 10 | |
78 | 268 | |
- | 0.0% | |
0.0 | 4.9 | |
over 4 years ago | almost 2 years ago | |
Clojure | Rust | |
MIT License | Apache License 2.0 |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
idx
Posts with mentions or reviews of idx.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-04-17.
-
Doxa - a simple db that copies the functionality of datascript, using meander as a query tool
You might be able to use my library: https://github.com/wotbrew/idx. Would add a tiny cost for the pulls but you should be able to beat data-script on many queries (by using hash indexes directly to entry vs btree indexes to eid).
staticvec
Posts with mentions or reviews of staticvec.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-27.
-
Posting asking if the Rust Reddit community is overly regulated gets regulated.
This crate of mine for example is currently literally unusable until the deeply fundamental features that John Random kinda-sorta removed in this pull request, ostensibly in preparation for whatever shittily stated syntax is ultimately establihed by whatever the hell "keyword generics" actually is (I really don't know, like this isn't a joke, I fundamentally do not understand what the fuck they're proposing at all in any way or how it's meaningfully and usefullly different from the previous syntax).
-
Alternative for Vec for variable size arrays in no_std environment?
If you're on nightly, I have a crate that I'd say would seem to be exactly what you're looking for.
-
Why do Rust crates rarely have good documentation?
I'd say the module system can sometimes get in the way of even the most technically well-documented crate out there. It's why for example I carefully rexport the various types implemented by my crate StaticVec from lib.rs such that the main docs page looks like this, even though "under the hood" everything is actually about as modular as you might expect it to be.
-
There's always something new and interesting to see on your Rust crate's Github Traffic page
Here.
- StaticVec 0.11.0 - fully fixed for current nightly Rust and updated to the 2021 edition
-
Zig programming language 0.9.0 released
Your link there is rather outdated. mem::unitialized() is deprecated and not recommended for use. MaybeUninit works more than fine in my experience, anyways.
-
What can C++ do that Rust can’t? (2021 edition)
The lack of decltype-esque functionality has consequences that are far-reaching enough to be worthy of more than a throwaway mention, IMO. See this ongoing issue for a crate of mine, for example.
-
How do I implement a StackVec in no_std that allows me to store arbitrary &str's?
If you're on nightly, my crate StaticVec definitely has your use case covered and then some.
-
StaticVec 0.10.6 - const `push`, const `pop, const `insert, the return of `intersperse` also as a `const fn`, and more!
Looks like this crate uses the full const_generics instead of min_const_generics (see here), along with a couple dozen other unstable features. I'm not sure how much of that could easily be removed, since it is often the tendency to enable tons of unstable features when you are already on nightly because of something like const generics.
- StaticVec 0.10.6: const `push`, const `pop`, const `insert`, the return of `intersperse` now also as a `const fn`, and more!
What are some alternatives?
When comparing idx and staticvec you can also consider the following projects:
treap - :leaves: :deciduous_tree: :fallen_leaf: Efficient implementation of the implicit treap data structure
const_fixedp - A const type for fixed point arithmetic in Rust.
portion - portion, a Python library providing data structure and operations for intervals.
staticstep - Provides truly zero-cost alternatives to Iterator::step_by for both incrementing and decrementing any type that satisfies RangeBounds<T: Copy + Default + Step>.
hypopg - Hypothetical Indexes for PostgreSQL
hypergraph - Hypergraph is data structure library to create a directed hypergraph in which a hyperedge can join any number of vertices.