discord-jadx/app/src/main/java/d0/t/r.java

132 lines
4.7 KiB
Java

package d0.t;
import d0.z.d.e0;
import d0.z.d.m;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Objects;
import java.util.RandomAccess;
import kotlin.jvm.functions.Function1;
import kotlin.sequences.Sequence;
/* compiled from: MutableCollections.kt */
public class r extends q {
public static final <T> boolean a(Iterable<? extends T> iterable, Function1<? super T, Boolean> function1, boolean z2) {
Iterator<? extends T> it = iterable.iterator();
boolean z3 = false;
while (it.hasNext()) {
if (function1.invoke((Object) it.next()).booleanValue() == z2) {
it.remove();
z3 = true;
}
}
return z3;
}
public static final <T> boolean addAll(Collection<? super T> collection, Iterable<? extends T> iterable) {
m.checkNotNullParameter(collection, "$this$addAll");
m.checkNotNullParameter(iterable, "elements");
if (iterable instanceof Collection) {
return collection.addAll((Collection) iterable);
}
boolean z2 = false;
Iterator<? extends T> it = iterable.iterator();
while (it.hasNext()) {
if (collection.add((Object) it.next())) {
z2 = true;
}
}
return z2;
}
public static final <T> boolean addAll(Collection<? super T> collection, Sequence<? extends T> sequence) {
m.checkNotNullParameter(collection, "$this$addAll");
m.checkNotNullParameter(sequence, "elements");
Iterator<? extends T> it = sequence.iterator();
boolean z2 = false;
while (it.hasNext()) {
if (collection.add((Object) it.next())) {
z2 = true;
}
}
return z2;
}
public static final <T> boolean addAll(Collection<? super T> collection, T[] tArr) {
m.checkNotNullParameter(collection, "$this$addAll");
m.checkNotNullParameter(tArr, "elements");
return collection.addAll(j.asList(tArr));
}
public static final <T> boolean removeAll(Iterable<? extends T> iterable, Function1<? super T, Boolean> function1) {
m.checkNotNullParameter(iterable, "$this$removeAll");
m.checkNotNullParameter(function1, "predicate");
return a(iterable, function1, true);
}
public static final <T> boolean removeAll(Collection<? super T> collection, Iterable<? extends T> iterable) {
m.checkNotNullParameter(collection, "$this$removeAll");
m.checkNotNullParameter(iterable, "elements");
return e0.asMutableCollection(collection).removeAll(o.convertToSetForSetOperationWith(iterable, collection));
}
public static final <T> boolean removeAll(List<T> list, Function1<? super T, Boolean> function1) {
int i;
m.checkNotNullParameter(list, "$this$removeAll");
m.checkNotNullParameter(function1, "predicate");
if (!(list instanceof RandomAccess)) {
Objects.requireNonNull(list, "null cannot be cast to non-null type kotlin.collections.MutableIterable<T>");
return a(e0.asMutableIterable(list), function1, true);
}
int lastIndex = n.getLastIndex(list);
if (lastIndex >= 0) {
int i2 = 0;
i = 0;
while (true) {
T t = list.get(i2);
if (!function1.invoke(t).booleanValue()) {
if (i != i2) {
list.set(i, t);
}
i++;
}
if (i2 == lastIndex) {
break;
}
i2++;
}
} else {
i = 0;
}
if (i >= list.size()) {
return false;
}
int lastIndex2 = n.getLastIndex(list);
if (lastIndex2 >= i) {
while (true) {
list.remove(lastIndex2);
if (lastIndex2 == i) {
break;
}
lastIndex2--;
}
}
return true;
}
public static final <T> T removeFirst(List<T> list) {
m.checkNotNullParameter(list, "$this$removeFirst");
if (!list.isEmpty()) {
return list.remove(0);
}
throw new NoSuchElementException("List is empty.");
}
public static final <T> boolean retainAll(Collection<? super T> collection, Iterable<? extends T> iterable) {
m.checkNotNullParameter(collection, "$this$retainAll");
m.checkNotNullParameter(iterable, "elements");
return e0.asMutableCollection(collection).retainAll(o.convertToSetForSetOperationWith(iterable, collection));
}
}