Class JsIterator<T>

java.lang.Object
io.deephaven.web.client.fu.JsIterator<T>
Type Parameters:
T -

@JsType(namespace="<global>", name="Iterator") @TsInterface public class JsIterator<T> extends Object
This is part of EcmaScript 2015, documented here for completeness. It supports a single method, next(), which returns an object with a boolean named done (true if there are no more items to return; false otherwise), and optionally some T instance, value, if there was at least one remaining item.
  • Constructor Details

    • JsIterator

      @JsIgnore public JsIterator(Iterator<T> wrapped)
  • Method Details