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

com.gs.collections.api.LazyIntIterable Maven / Gradle / Ivy

/*
 * Copyright 2014 Goldman Sachs.
 *
 * 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 com.gs.collections.api;

import com.gs.collections.api.block.function.primitive.IntToBooleanFunction;
import com.gs.collections.api.block.function.primitive.IntToByteFunction;
import com.gs.collections.api.block.function.primitive.IntToCharFunction;
import com.gs.collections.api.block.function.primitive.IntToDoubleFunction;
import com.gs.collections.api.block.function.primitive.IntToFloatFunction;
import com.gs.collections.api.block.function.primitive.IntToIntFunction;
import com.gs.collections.api.block.function.primitive.IntToLongFunction;
import com.gs.collections.api.block.function.primitive.IntToObjectFunction;
import com.gs.collections.api.block.function.primitive.IntToShortFunction;
import com.gs.collections.api.block.predicate.primitive.IntPredicate;

/**
 * This file was automatically generated from template file lazyPrimitiveIterable.stg.
 */
public interface LazyIntIterable extends IntIterable
{
    LazyIntIterable select(IntPredicate predicate);

    LazyIntIterable reject(IntPredicate predicate);

     LazyIterable collect(IntToObjectFunction function);

    /**
     * @since 7.0
     */
    LazyBooleanIterable collectBoolean(IntToBooleanFunction function);

    /**
     * @since 7.0
     */
    LazyByteIterable collectByte(IntToByteFunction function);

    /**
     * @since 7.0
     */
    LazyCharIterable collectChar(IntToCharFunction function);

    /**
     * @since 7.0
     */
    LazyShortIterable collectShort(IntToShortFunction function);

    /**
     * @since 7.0
     */
    LazyIntIterable collectInt(IntToIntFunction function);

    /**
     * @since 7.0
     */
    LazyFloatIterable collectFloat(IntToFloatFunction function);

    /**
     * @since 7.0
     */
    LazyLongIterable collectLong(IntToLongFunction function);

    /**
     * @since 7.0
     */
    LazyDoubleIterable collectDouble(IntToDoubleFunction function);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy