エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Add iterable/iterator support for `wasm-bindgen`. · Issue #1036 · rustwasm/wasm-bindgen
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Add iterable/iterator support for `wasm-bindgen`. · Issue #1036 · rustwasm/wasm-bindgen
EDIT I'm going to write some notes for myself about iterators in ECMAScript and webidl. The origi... EDIT I'm going to write some notes for myself about iterators in ECMAScript and webidl. The original content of the issue follows below. Iterators and iterables in ECMAScript In ECMAScript, there are 2 special interfaces that objects can implement, iterator and iterable. A type is an iterator if it has a method called next that returns an object of the form { done: boolean, value: T } for any type