Stijn Frishert
Stijn Frishert
Looking at the interface, I'm missing: - `try_alloc_slice_clone()` - `try_alloc_slice_copy()` - `try_alloc_slice_fill_clone()` - `try_alloc_slice_fill_copy()` - `try_alloc_slice_fill_default()` - `try_alloc_slice_iter()` - `try_alloc_slice_with()` Need `try_alloc_slice_fill_copy()` and `try_alloc_slice_fill_default()` myself, though why not add all...
Hey there! First of all, want to say I'm glad I found a rust library that does SF2! Well done :) Is it possible that the error type implements `std::error::Error`?...
Easy for creating livesets. Per request by Infu (#86)
I know this is probably the #1 crowdpleaser request. It hasn't necessarily been liblsdj's aim to provide a GUI (a _lot_ of questions come with that decision), but I'm keeping...
Would be nice to have a stats tool to show you the amount of space/tables/instruments/etc. you've used
This might give users the opportunity to save lost songs. > ERROR: the SRAM initialization bytes aren't set to 'jk' > This probably means it is corrupted > Do you...
While export does actually still export lsdsng's, import can be used to import both lsdsng's as well as sav's. Moreover, the names are a bit long and cumbersome. What about...
`Owned` is the garbage collected equivalent of `Box`, yet at the same time `T` has to be `Sized`, while it doesn't have to be for `Box`. Sames goes for `Shared`...
### Summary I'd like to use `visit::Topo`, but I need to be sure that it doesn't allocate. The other visitors like `DfsPostOrder` have their fields `pub` so that users can...