I’ve recently stumbled over this code: function xrange($min, $max) { for ($i = $min; $i <= $max; $i++) { yield $i; } } ...
-
May 18, 2022
- 0 Comments