package k1;

import java.io.Serializable;

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

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

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

    public h(A a3, B b3) {
        this.f5163e = a3;
        this.f5164f = b3;
    }

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

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

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

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

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof h)) {
            return false;
        }
        h hVar = (h) obj;
        return w1.g.a(this.f5163e, hVar.f5163e) && w1.g.a(this.f5164f, hVar.f5164f);
    }

    public int hashCode() {
        A a3 = this.f5163e;
        int iHashCode = (a3 == null ? 0 : a3.hashCode()) * 31;
        B b3 = this.f5164f;
        return iHashCode + (b3 != null ? b3.hashCode() : 0);
    }

    public String toString() {
        return '(' + this.f5163e + ", " + this.f5164f + ')';
    }
}
