Implement IEnumerable on reversed
See original GitHub issueWe do the same thing in other reversed iterators. Fixes the following:
bytes(reversed(b"123"))
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Enumerable.Reverse<TSource>(IEnumerable<TSource ...
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required...
Read more >difference between IEnumerable<T>.Reverse & List<T>.Reverse
In this view of the data, returning a new IEnumerable in a different order is the expected result. When you use a List...
Read more >Best Practices Implementing the IEnumerable Interface
In this article we will cover the origin, the purpose, and best practices in implementing IEnumerable interface in C#.
Read more >Implementing IEnumerable in the Data Structures - Msmvps
So I decided to implement IEnumerable<T> on the data structures. ... and not in the reversed order (last pushed should be the first...
Read more >IEnumerable<T> - Using C# LINQ - A Practical Overview
What is IEnumerable<T>? IEnumerable<T> is an interface that guarantees a given class is iterable. · What classes implement IEnumerable<T>? Most C# collections ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yes, it does fix the sample code
Did you check that your fix indeed fixes the sample code in the issue?