Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sequence (0.18 sec)

  1. android/guava/src/com/google/common/collect/AbstractSequentialIterator.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.NoSuchElementException;
    import javax.annotation.CheckForNull;
    
    /**
     * This class provides a skeletal implementation of the {@code Iterator} interface for sequences
     * whose next element can always be derived from the previous element. Null elements are not
     * supported, nor is the {@link #remove()} method.
     *
     * <p>Example:
     *
     * <pre>{@code
     * Iterator<Integer> powersOfTwo =
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Jul 09 17:31:04 GMT 2021
    - 2.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractSequentialIterator.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.NoSuchElementException;
    import javax.annotation.CheckForNull;
    
    /**
     * This class provides a skeletal implementation of the {@code Iterator} interface for sequences
     * whose next element can always be derived from the previous element. Null elements are not
     * supported, nor is the {@link #remove()} method.
     *
     * <p>Example:
     *
     * <pre>{@code
     * Iterator<Integer> powersOfTwo =
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Jul 09 17:31:04 GMT 2021
    - 2.4K bytes
    - Viewed (0)
Back to top