Class Array

All Implemented Interfaces:
Iterable<Value>

public class Array extends Native implements Iterable<Value>
The Array class represents a native array structure and provides methods to interact with and retrieve values from the array. It implements the Iterable interface for Value type.
  • Method Details

    • get

      public final Value get(int idx)
    • len

      public final int len()
    • iterator

      public final Iterator<Value> iterator()
      Specified by:
      iterator in interface Iterable<Value>
    • iterator

      public final <T> Iterator<T> iterator(Class<T> clazz)
    • synchronizedIterator

      public final Iterator<Value> synchronizedIterator()
    • synchronizedIterator

      public final <T> Iterator<T> synchronizedIterator(Class<T> clazz)