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

org.eclipse.collections.impl.lazy.DropIterable Maven / Gradle / Ivy

Go to download

Builds the commons-text. Requires eclipse-collections-api be built first and be excluded from any other poms requiring it.

There is a newer version: 11.1.0-r13
Show newest version
/*
 * Copyright (c) 2021 Goldman Sachs.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.impl.lazy;

import java.util.Iterator;
import java.util.Optional;

import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.impl.block.factory.Predicates;
import org.eclipse.collections.impl.block.predicate.DropIterablePredicate;
import org.eclipse.collections.impl.block.procedure.IfObjectIntProcedure;
import org.eclipse.collections.impl.block.procedure.IfProcedure;
import org.eclipse.collections.impl.block.procedure.IfProcedureWith;
import org.eclipse.collections.impl.lazy.iterator.SelectIterator;
import org.eclipse.collections.impl.utility.Iterate;

/**
 * Iterates over the elements of the adapted Iterable skipping the first count elements or the full adapted Iterable if
 * the count is non-positive.
 */
public class DropIterable extends AbstractLazyIterable
{
    private final Iterable adapted;
    private final int count;

    public DropIterable(Iterable newAdapted, int count)
    {
        if (count < 0)
        {
            throw new IllegalArgumentException("Count must be greater than zero, but was: " + count);
        }
        this.adapted = newAdapted;
        this.count = count;
    }

    @Override
    public void each(Procedure procedure)
    {
        Iterate.forEach(this.adapted, new IfProcedure<>(new DropIterablePredicate<>(this.count), procedure));
    }

    @Override
    public void forEachWithIndex(ObjectIntProcedure objectIntProcedure)
    {
        Iterate.forEach(this.adapted, new IfObjectIntProcedure<>(new DropIterablePredicate<>(this.count), objectIntProcedure));
    }

    @Override
    public 

void forEachWith(Procedure2 procedure, P parameter) { Iterate.forEachWith(this.adapted, new IfProcedureWith<>(new DropIterablePredicate<>(this.count), procedure), parameter); } @Override public boolean anySatisfy(Predicate predicate) { return Iterate.anySatisfy(this.adapted, Predicates.and(new DropIterablePredicate<>(this.count), predicate)); } @Override public boolean allSatisfy(Predicate predicate) { return Iterate.allSatisfy(this.adapted, Predicates.or(Predicates.not(new DropIterablePredicate<>(this.count)), predicate)); } @Override public boolean noneSatisfy(Predicate predicate) { return Iterate.noneSatisfy(this.adapted, Predicates.and(new DropIterablePredicate<>(this.count), predicate)); } @Override public T detect(Predicate predicate) { return Iterate.detect(this.adapted, Predicates.and(new DropIterablePredicate<>(this.count), predicate)); } @Override public Optional detectOptional(Predicate predicate) { return Iterate.detectOptional(this.adapted, Predicates.and(new DropIterablePredicate<>(this.count), predicate)); } @Override public Iterator iterator() { return new SelectIterator<>(this.adapted.iterator(), new DropIterablePredicate<>(this.count)); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy