python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Save bubble sort with iterator and unseve with raw pointers strange speed
Recently I was playing with bubble sorting and saw a strange phenomenon that I can't understand.
For some reason, code on raw pointers is slower than if I use iterator (if run as cargo run without rel...
Alisher
Votes: 0
Answers: 2
Is there any way to not link the lifetime of the iterator to the struct?
I am trying to implement a filter function which receives an iterator to a vector and returns an iterator with the filter. Is there any way by which I don't link the lifetime of the iterator to the st...

Richa Jain
Votes: 0
Answers: 1
Skipping iterations inside Python iterator __next__ in a manner similar to continue
I would like to make a Python iterator class using __next__ that skips certain elements.
For example, here I have implemented a generator using yield and continue and I would like the iterator class b...
Daniel
Votes: 0
Answers: 1