All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.EachCallbackFunction Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.FunctionalInterface;
import js.lang.Any;
import js.util.collections.Array;
import org.teavm.jso.JSFunctor;

/**
 * The iterator callback.
 *
 * @param item
 * The array item.
 *
 * @param index
 * The item's index in the array.
 *
 * @param arr
 * The array that each is being applied to.
 *
 */
@JSFunctor
@FunctionalInterface
public interface EachCallbackFunction extends Any {
  void apply(T item, double index, Array arr);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy