rush icon indicating copy to clipboard operation
rush copied to clipboard

[WIP] Succinct & readable processing language for the shell

Results 4 rush issues
Sort by recently updated
recently updated
newest added

``` 5 >> |x| x + 2 === 7 "-8" >> int & abs & |x| x / 2 >> sqrt === 2 ("-8" >> int & abs, 2) >>...

feature
idea

LoDash/Underscore is a widely used Javascript library with some helper functions. Many of them could be translated directly to rush. - [ ] `chunk` (for arrays and strings) - [x]...

feature

The obvious ones: - [ ] `lower` - [ ] `upper` and also: - [ ] `camel` (camelCase) - [ ] `cap` (Capitalize) - [ ] `snake` (snake_case)

feature
easy

Most of the actually portable ones are already present in some form, but there a few remaining. Here's a list: - [ ] `range` - [ ] `zip` (producing array...

feature
easy