|
@@ -1,3 +1,8 @@
|
|
|
+/*
|
|
|
+ * Licensed under Apache-2.0
|
|
|
+ *
|
|
|
+ * Designed and developed by Aidan Follestad (@afollestad)
|
|
|
+ */
|
|
|
package com.afollestad.materialdialogs.utils
|
|
|
|
|
|
internal fun IntArray.appendAll(values: Collection<Int>): IntArray {
|
|
@@ -10,4 +15,4 @@ internal fun IntArray.removeAll(values: Collection<Int>): IntArray {
|
|
|
val mutable = this.toMutableList()
|
|
|
mutable.removeAll { values.contains(it) }
|
|
|
return mutable.toIntArray()
|
|
|
-}
|
|
|
+}
|