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

cyclops.arrow.SemigroupK Maven / Gradle / Ivy

The newest version!
package cyclops.arrow;


import com.oath.cyclops.hkt.Higher;
import cyclops.function.Semigroup;

@FunctionalInterface
public interface SemigroupK  {

    Higher apply(Higher t1, Higher t2);

  default  Semigroup> asSemigroup(){
    return (a,b)->this.apply(a,b);
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy