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

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

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

public interface Nested extends Kind {

  @SuppressWarnings("unchecked")
  static  Higher1, A> nest(Higher1> unnested) {
    return (Higher1, A>) unnested;
  }

  @SuppressWarnings("unchecked")
  static  Higher1> unnest(Higher1, A> nested) {
    return (Higher1>) nested;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy