Improve migration copy and migrate functions

This commit is contained in:
Jobobby04
2023-04-16 14:07:47 -04:00
parent d8c2baa135
commit 4212d155ce
4 changed files with 104 additions and 30 deletions
+4 -4
View File
@@ -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