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;

public interface Printable {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy