nozavroni / csvelte

🕺🏻 CSV and Tabular Data library for PHP
http://phpcsv.com/
Other
6 stars 0 forks source link

Write a generic generator function #133

Closed nozavroni closed 6 years ago

nozavroni commented 7 years ago

Write a generator function that can wrap any iterator or iterable. It would be used like this (I think... I'm still pretty new to generators).

foreach (generator($iter) as $key => $val) {
    // do something with it... 
}

Research / Resources

nozavroni commented 6 years ago

Wildly out of scope