Iterating over JavaScript Values
Methods That Return js_sys::Iterator
Some JavaScript collections have methods for iterating over their values or keys:
Map::values
Set::keys
- etc...
These methods return
js_sys::Iterator
,
which is the Rust representation of a JavaScript object that has a next
method
that either returns the next item in the iteration, notes that iteration has
completed, or throws an error. That is, js_sys::Iterator
represents an object
that implements the duck-typed JavaScript iteration
protocol.
js_sys::Iterator
can be converted into a Rust iterator either by reference
(into
js_sys::Iter<'a>
)
or by value (into
js_sys::IntoIter
). The
Rust iterator will yield items of type Result<JsValue>
. If it yields an
Ok(...)
, then the JS iterator protocol returned an element. If it yields an
Err(...)
, then the JS iterator protocol threw an exception.
Iterating Over Any JavaScript Object that Implements the Iterator Protocol
You could manually test for whether an object implements JS's duck-typed
iterator protocol, and if so, convert it into a js_sys::Iterator
that you can
finally iterate over. You don't need to do this by-hand, however, since we
bundled this up as the js_sys::try_iter
function!
For example, we can write a function that collects the numbers from any JS
iterable and returns them as an Array
: