mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Make IApproxEquatable have an in type param
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
/// <summary>
|
||||
/// Approximate equality checking, to handle floating point errors.
|
||||
/// </summary>
|
||||
public interface IApproxEquatable<T>
|
||||
public interface IApproxEquatable<in T>
|
||||
{
|
||||
bool EqualsApprox(T other);
|
||||
bool EqualsApprox(T other, double tolerance);
|
||||
|
||||
Reference in New Issue
Block a user