package f;

import java.io.Serializable;

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

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

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

    /* JADX INFO: renamed from: g, reason: collision with root package name */
    private final C f3947g;

    public o(A a, B b2, C c2) {
        this.f3945b = a;
        this.f3946f = b2;
        this.f3947g = c2;
    }

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

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

    public final C c() {
        return this.f3947g;
    }

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

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof o)) {
            return false;
        }
        o oVar = (o) obj;
        return f.z.d.k.a(this.f3945b, oVar.f3945b) && f.z.d.k.a(this.f3946f, oVar.f3946f) && f.z.d.k.a(this.f3947g, oVar.f3947g);
    }

    public int hashCode() {
        A a = this.f3945b;
        int iHashCode = (a == null ? 0 : a.hashCode()) * 31;
        B b2 = this.f3946f;
        int iHashCode2 = (iHashCode + (b2 == null ? 0 : b2.hashCode())) * 31;
        C c2 = this.f3947g;
        return iHashCode2 + (c2 != null ? c2.hashCode() : 0);
    }

    public String toString() {
        return '(' + this.f3945b + ", " + this.f3946f + ", " + this.f3947g + ')';
    }
}
