org.irlab.cartesianproduct.Iterable9 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cartesian-product Show documentation
Show all versions of cartesian-product Show documentation
Iterable of the cartesian product of Iterables
The newest version!
/*
* Copyright 2019 Information Retrieval Lab - University of A Coruña
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.irlab.cartesianproduct;
import java.util.Iterator;
import java.util.Spliterator;
import java.util.function.Consumer;
import org.jooq.lambda.function.Consumer9;
import org.jooq.lambda.tuple.Tuple9;
/**
* Iterable of nine-arity tuples that also has a forEach with nine arguments.
*
* @param the type of the first element
* @param the type of the second element
* @param the type of the third element
* @param the type of the fourth element
* @param the type of the fifth element
* @param the type of the sixth element
* @param the type of the seventh element
* @param the type of the eight element
* @param the type of the ninth element
*
* @author [email protected]
*/
@FunctionalInterface
public interface Iterable9
extends Iterable> {
/**
* Performs the give action for each tuple of the {@link Iterable9}.
*
* @param action The action to be performed for each tuple.
*/
default void forEach(
final Consumer9 super E1, ? super E2, ? super E3, ? super E4, ? super E5, ? super E6, ? super E7, ? super E8, ? super E9> action) {
forEach(tuple -> action.accept(tuple.v1, tuple.v2, tuple.v3, tuple.v4, tuple.v5, tuple.v6,
tuple.v7, tuple.v8, tuple.v9));
}
/**
* {@inheritDoc}
*/
@Override
Iterator> iterator();
/**
* {@inheritDoc}
*/
@Override
default void forEach(
final Consumer super Tuple9> action) {
Iterable.super.forEach(action);
}
/**
* {@inheritDoc}
*/
@Override
default Spliterator> spliterator() {
return Iterable.super.spliterator();
}
}