Skip to content

Releases: crepererum/rdxsort-rs

v0.3.0: the framework

22 Aug 22:14
v0.3.0
Compare
Choose a tag to compare

Now, all data types use the same template and now specialized code for sorting. This is possible by extended the template to a more generic framework. This shift to a more generic solution enables us to implement generic composed data types like tuples and arrays as well as the design of possible future algorithms and data structures like radix trees.

Keep in mind that the current design is limited to fixed-size data types and especially disallows slices, vectors and strings. There are ideas to extend the framework to enable these use cases in future versions.

Apart from the new framework, there are some other new features and fixes included in this release:

  • more supported types: char, isize, usize, arrays, tuples
  • extended benchmarks
  • simple macro to create alias implementations
  • bug fixes for sort strategy
  • extended docs

v0.2.0: bools, security

18 Aug 10:39
v0.2.0
Compare
Choose a tag to compare
  • support bool
  • security asserts to protect from internal and external bugs
  • benchmarks (requires nightly)
  • extended docs
  • code deduplication

v0.1.0

12 Aug 14:02
v0.1.0
Compare
Choose a tag to compare

This is the very first release 😄