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

js.util.iterable.ShortIteratorResult Maven / Gradle / Ivy

package js.util.iterable;

import js.lang.Any;
import org.teavm.jso.JSProperty;


public interface ShortIteratorResult extends Any {
    @JSProperty
    boolean getDone();

    @JSProperty
    void setDone(boolean done);

    @JSProperty
    short getValue();

    @JSProperty
    void setValue(short value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy