Improve migration copy and migrate functions
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
package exh.util
|
||||
|
||||
infix fun Int.over(other: Int) = this > other
|
||||
infix fun <T : Comparable<T>> T.over(other: T) = this > other
|
||||
|
||||
infix fun Int.overEq(other: Int) = this >= other
|
||||
infix fun <T : Comparable<T>> T.overEq(other: T) = this >= other
|
||||
|
||||
infix fun Int.under(other: Int) = this < other
|
||||
infix fun <T : Comparable<T>> T.under(other: T) = this < other
|
||||
|
||||
infix fun Int.underEq(other: Int) = this <= other
|
||||
infix fun <T : Comparable<T>> T.underEq(other: T) = this <= other
|
||||
|
||||
Reference in New Issue
Block a user