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

com.gs.collections.api.LazyFloatIterable 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.FloatToBooleanFunction;
import com.gs.collections.api.block.function.primitive.FloatToByteFunction;
import com.gs.collections.api.block.function.primitive.FloatToCharFunction;
import com.gs.collections.api.block.function.primitive.FloatToDoubleFunction;
import com.gs.collections.api.block.function.primitive.FloatToFloatFunction;
import com.gs.collections.api.block.function.primitive.FloatToIntFunction;
import com.gs.collections.api.block.function.primitive.FloatToLongFunction;
import com.gs.collections.api.block.function.primitive.FloatToObjectFunction;
import com.gs.collections.api.block.function.primitive.FloatToShortFunction;
import com.gs.collections.api.block.predicate.primitive.FloatPredicate;

/**
 * This file was automatically generated from template file lazyPrimitiveIterable.stg.
 */
public interface LazyFloatIterable extends FloatIterable
{
    LazyFloatIterable select(FloatPredicate predicate);

    LazyFloatIterable reject(FloatPredicate predicate);

     LazyIterable collect(FloatToObjectFunction function);

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

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

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

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

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy