mirror of
https://github.com/danog/strum.git
synced 2024-11-30 04:28:59 +01:00
nth_back wasn't stablilized until 1.37 (#85)
This commit is contained in:
parent
043b60f6d8
commit
de17e1c7a2
@ -120,11 +120,7 @@ pub fn enum_iter_inner(ast: &syn::DeriveInput) -> TokenStream {
|
|||||||
|
|
||||||
impl #impl_generics DoubleEndedIterator for #iter_name #ty_generics #where_clause {
|
impl #impl_generics DoubleEndedIterator for #iter_name #ty_generics #where_clause {
|
||||||
fn next_back(&mut self) -> Option<Self::Item> {
|
fn next_back(&mut self) -> Option<Self::Item> {
|
||||||
self.nth_back(0)
|
let back_idx = self.back_idx + 1;
|
||||||
}
|
|
||||||
|
|
||||||
fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
|
|
||||||
let back_idx = self.back_idx + n + 1;
|
|
||||||
|
|
||||||
if self.idx + back_idx > #variant_count {
|
if self.idx + back_idx > #variant_count {
|
||||||
// We went past the end of the iterator. Freeze back_idx at #variant_count
|
// We went past the end of the iterator. Freeze back_idx at #variant_count
|
||||||
|
Loading…
Reference in New Issue
Block a user