>
>
>
> function* gen(a, b, c) first {
>   ...
> }
>
> Not bikeshedding, some found it ugly or too terse, many wondered about
> other future syntax vying to go after the parameter list. But the idea
> seems good.


Cool.  Although this solution isn't going to be *that* much better, because
it will necessitate uncomfortable branching to deal with first iteration
vs. subsequent iterations.

On the other hand, something along the lines of:

    function *echo() input {
        while (true) yield input.value;
    }

doesn't have the same problem.
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to