ronanM

Results 29 issues of ronanM

``` List(1, 2, 3, 4).takeWhile(_ != 3) // List(1, 2) List(1, 2, 3, 4).takeUntil(_ == 3) // List(1, 2, 3) ```

enhancement
library:collections
status:pending

Add a progress indicator after the message `Starting server, this might take a few minutes...` to check if the process is still running or stuck.

enhancement

In a web crawler, when I strip the HTML tree, sometimes `detach()` panic on the `.unwrap()`.

bug

In the "dynamic" versions of `buffer(n: usize)` and `buffer_unordered(n: usize)`, the number of buffered futures defined by `n: usize` could be replaced by `AsRef`, allowing it to change dynamically over...

C-feature-request
A-stream

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Clap Version master ### Describe your...

C-enhancement

Add option/shortcut to view more using multiple columns for wide screen and/or small font.

Add a `join()` operator with `prefix`, `sep` and `suffix`. `assert_eq!([1, 2, 3].iter().join(""), "");`

### DefFuture In Scala, `Future` is not "referentially transparent" because: - `Future` is eagerly evaluated. - `Future` is memoized (the result is cached). 1) The execution of this code: ```scala...