Chaos utilities.

This commit is contained in:
2023-04-04 21:13:27 -07:00
parent 139743a4ba
commit 6a05d5f29f
5 changed files with 97 additions and 51 deletions

View File

@ -0,0 +1,3 @@
package gay.pizza.foundation.common
fun <T> Array<T>.without(value: T): List<T> = filter { it != value }