package f;

import java.io.Serializable;

/* JADX INFO: compiled from: Tuples.kt */
/* JADX INFO: loaded from: classes.dex */
public final class k<A, B> implements Serializable {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private final A f3938b;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    private final B f3939f;

    public k(A a, B b2) {
        this.f3938b = a;
        this.f3939f = b2;
    }

    public final A a() {
        return this.f3938b;
    }

    public final B b() {
        return this.f3939f;
    }

    public final A c() {
        return this.f3938b;
    }

    public final B d() {
        return this.f3939f;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof k)) {
            return false;
        }
        k kVar = (k) obj;
        return f.z.d.k.a(this.f3938b, kVar.f3938b) && f.z.d.k.a(this.f3939f, kVar.f3939f);
    }

    public int hashCode() {
        A a = this.f3938b;
        int iHashCode = (a == null ? 0 : a.hashCode()) * 31;
        B b2 = this.f3939f;
        return iHashCode + (b2 != null ? b2.hashCode() : 0);
    }

    public String toString() {
        return '(' + this.f3938b + ", " + this.f3939f + ')';
    }
}
