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

com.github.tonivade.purefun.Higher2 Maven / Gradle / Ivy

/*
 * Copyright (c) 2018-2019, Antonio Gabriel Muñoz Conejo 
 * Distributed under the terms of the MIT License
 */
package com.github.tonivade.purefun;

public interface Higher2 extends Higher1, B> {

  @Override
  default  R fix1(Function1, B>, ? extends R> function) {
    return Higher1.super.fix1(function);
  }

  default  R fix2(Function1, ? extends R> function) {
    return function.apply(this);
  }

  @SuppressWarnings("unchecked")
  static  Higher2 narrowK(Higher1, B> value) {
    return (Higher2) value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy