Kangaxx-0
Kangaxx-0
> @Kangaxx-0 In Rust language, the following code is equivalent. > > ```rust > let x = &1; > ``` > > and > > ```rust > let ref x...
@sholderbach - From what I saw, when we save new history record(plaintext), the only field not `None` is `HistoryItem.command_line` > 1. The history menu we provide out of the box...
Appreciate the details !
> 1. The history menu we provide out of the box could be more helpful to have functionality to filter for success and dedup afterwards. Add a bit flag column...
@sholderbach I've made some local changes, here is how it looks, any comments?
> What if instead of adding new column, we just add a mechanism to skip putting a new command that already exists? I feel like what you are suggesting is...
IIRC, `insert` and `update` are meant to make the modification to single column, what would be the scenario we need them to be parallelisable
For `all` and `any`, it is tricky, from command's standpoint, they should be parallelisable, but the fact is, rayon's iterator methods are not the same as std, they expect `Fn`...
> > For `all` and `any`, it is tricky, from command's standpoint, they should be parallelisable, but the fact is, rayon's iterator methods are not the same as std, they...
Attach a pr for `all?` command for now. Generally speaking, Stack is a runtime value collection, clone it can be an expensive action