- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
29 lines
778 B
Java
29 lines
778 B
Java
package kotlin.collections;
|
|
|
|
import java.util.Collections;
|
|
import java.util.Set;
|
|
import kotlin.collections.builders.SetBuilder;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public abstract class SetsKt__SetsJVMKt {
|
|
public static Set setOf(Object obj) {
|
|
Set singleton = Collections.singleton(obj);
|
|
Intrinsics.checkNotNullExpressionValue(singleton, "singleton(...)");
|
|
return singleton;
|
|
}
|
|
|
|
public static Set createSetBuilder() {
|
|
return new SetBuilder();
|
|
}
|
|
|
|
public static Set createSetBuilder(int i) {
|
|
return new SetBuilder(i);
|
|
}
|
|
|
|
public static Set build(Set builder) {
|
|
Intrinsics.checkNotNullParameter(builder, "builder");
|
|
return ((SetBuilder) builder).build();
|
|
}
|
|
}
|