Example usage for jdk.nashorn.internal.objects NativeArray valueIterator

List of usage examples for jdk.nashorn.internal.objects NativeArray valueIterator

Introduction

In this page you can find the example usage for jdk.nashorn.internal.objects NativeArray valueIterator.

Prototype

public Iterator<Object> valueIterator() 

Source Link

Document

Return a property value iterator.

Usage

From source file:gedi.util.functions.EI.java

License:Apache License

public static ExtendedIterator<Object> wrap(NativeArray na) {
    return wrap(na.valueIterator());
}