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

cyclops.typeclasses.Show Maven / Gradle / Ivy

The newest version!
package cyclops.typeclasses;


import com.oath.cyclops.hkt.Higher;

public interface Show {

    default  String show(Higher ds){
        return ds.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy