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

com.aol.cyclops.lambda.api.Printable Maven / Gradle / Ivy

package com.aol.cyclops.lambda.api;

/**
 * Mixin a print method with a return value (can be used as a method reference to
 * methods that accept Functions).
 * 
 * @author johnmcclean
 *
 */
public interface Printable {

	default  T print(T object){
		System.out.println(object);
		return object;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy