com.bestvike.collections.IStructuralEquatable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linq Show documentation
Show all versions of linq Show documentation
LINQ to Objects for Java.
The newest version!
package com.bestvike.collections;
import com.bestvike.collections.generic.IEqualityComparer;
/**
* Created by 许崇雷 on 2017-07-23.
*/
@SuppressWarnings("rawtypes")
public interface IStructuralEquatable {
boolean equals(Object other, IEqualityComparer comparer);
int hashCode(IEqualityComparer comparer);
}