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

org.eclipse.collections.impl.lazy.CompositeIterable 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.NoSuchElementException;
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.api.list.MutableList;
import org.eclipse.collections.impl.Counter;
import org.eclipse.collections.impl.EmptyIterator;
import org.eclipse.collections.impl.list.mutable.FastList;
import org.eclipse.collections.impl.utility.Iterate;

public final class CompositeIterable
        extends AbstractLazyIterable
{
    private final MutableList> iterables;

    private CompositeIterable(MutableList> newIterables)
    {
        this.iterables = newIterables;
    }

    public CompositeIterable()
    {
        this(FastList.newList());
    }

    public static  CompositeIterable with(Iterable... iterables)
    {
        return new CompositeIterable<>(FastList.newListWith(iterables));
    }

    @Override
    public void each(Procedure procedure)
    {
        this.iterables.each(iterable -> Iterate.forEach(iterable, procedure));
    }

    @Override
    public void forEachWithIndex(ObjectIntProcedure objectIntProcedure)
    {
        Counter index = new Counter();
        this.iterables.each(iterable -> Iterate.forEach(iterable, object ->
        {
            objectIntProcedure.value(object, index.getCount());
            index.increment();
        }));
    }

    @Override
    public 

void forEachWith(Procedure2 procedure, P parameter) { this.iterables.each(iterable -> Iterate.forEachWith(iterable, procedure, parameter)); } @Override public boolean anySatisfy(Predicate predicate) { return this.iterables.anySatisfy(each -> Iterate.anySatisfy(each, predicate)); } @Override public boolean allSatisfy(Predicate predicate) { return this.iterables.allSatisfy(each -> Iterate.allSatisfy(each, predicate)); } @Override public boolean noneSatisfy(Predicate predicate) { return this.iterables.noneSatisfy(each -> Iterate.anySatisfy(each, predicate)); } @Override public E detect(Predicate predicate) { for (int i = 0; i < this.iterables.size(); i++) { Iterable eachIterable = this.iterables.get(i); E result = Iterate.detect(eachIterable, predicate); if (result != null) { return result; } } return null; } @Override public Optional detectOptional(Predicate predicate) { for (int i = 0; i < this.iterables.size(); i++) { Iterable eachIterable = this.iterables.get(i); Optional result = Iterate.detectOptional(eachIterable, predicate); if (result.isPresent()) { return result; } } return Optional.empty(); } public void add(Iterable iterable) { this.iterables.add(iterable); } @Override public int size() { return (int) this.iterables.sumOfInt(Iterate::sizeOf); } @Override public Iterator iterator() { return new CompositeIterator(this.iterables); } private final class CompositeIterator implements Iterator { private final Iterator> iterablesIterator; private Iterator innerIterator; private CompositeIterator(MutableList> iterables) { this.iterablesIterator = iterables.listIterator(); this.innerIterator = EmptyIterator.getInstance(); } @Override public boolean hasNext() { while (true) { if (this.innerIterator.hasNext()) { return true; } if (!this.iterablesIterator.hasNext()) { return false; } this.innerIterator = this.iterablesIterator.next().iterator(); } } @Override public E next() { if (!this.hasNext()) { throw new NoSuchElementException(); } return this.innerIterator.next(); } @Override public void remove() { throw new UnsupportedOperationException("Cannot remove from a composite iterator"); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy