cyclops.typeclasses.Show Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cyclops-pure Show documentation
Show all versions of cyclops-pure Show documentation
Platform for Functional Reactive Programming with Java 8
The newest version!
package cyclops.typeclasses;
import com.oath.cyclops.hkt.Higher;
public interface Show {
default String show(Higher ds){
return ds.toString();
}
}