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

com.github.rutledgepaulv.rqe.pipes.IdentityPipe Maven / Gradle / Ivy

The newest version!
/*
 *  com.github.rutledgepaulv.rqe.pipes.IdentityPipe
 *  *
 *  * Copyright (C) 2016 Paul Rutledge 
 *  *
 *  * This software may be modified and distributed under the terms
 *  * of the MIT license.  See the LICENSE file for details.
 *
 */

package com.github.rutledgepaulv.rqe.pipes;

import java.util.function.Function;

public class IdentityPipe implements Function {

    @Override
    public T apply(T t) {
        return t;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy