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

com.github.jnthnclt.os.lab.collections.oh.OHEqualer Maven / Gradle / Ivy

There is a newer version: 1.12.2
Show newest version
package com.github.jnthnclt.os.lab.collections.oh;

/**
 *
 * @author jonathan.colt
 */
public interface OHEqualer {

    OHEqualer SINGLETON = (a,b) -> a.equals(b);

    boolean equals(K a, K b);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy