aobat
aobat
Fix #601 anyway because this change will reduce one clone.
I was bit surprised by that `Itertools::tuple_windows` is not somewhat lazy and has side effect. It is consuming the first tuple when calling `Itertools::tuple_windows` . https://doc.rust-lang.org/nightly/core/iter/index.html#laziness says that adapters in...
Resolves #41.
The doc comment of `Integer::divides` is `Deprecated, use is_multiple_of instead.` but it does not have `deprecated` attribute.
This code fails to get the y value, with the error 'attempt to subtract with overflow'. ```rust #[test] fn extended_gcd_test(){ use num_integer::Integer; let _x = 10.extended_gcd(&4); let _y = 10_u32.extended_gcd(&4);...
I had a problem when writing a custom `DeserializeSeed` impl. For visit_seq, I wanted to pass my type as seed and get it back, and reuse it again, but `next_element_seed`...
### 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 3.2.22 ### Describe your...
### 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 3.2.22 ### Describe your...
#49 clap 4 support