package d;

import java.io.Serializable;

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

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

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

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

    public u(A a2, B b2, C c2) {
        this.f2734c = a2;
        this.f2735d = b2;
        this.f2736e = c2;
    }

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

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

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

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof u)) {
            return false;
        }
        u uVar = (u) obj;
        return d.n0.c.s.a(this.f2734c, uVar.f2734c) && d.n0.c.s.a(this.f2735d, uVar.f2735d) && d.n0.c.s.a(this.f2736e, uVar.f2736e);
    }

    public int hashCode() {
        A a2 = this.f2734c;
        int iHashCode = (a2 == null ? 0 : a2.hashCode()) * 31;
        B b2 = this.f2735d;
        int iHashCode2 = (iHashCode + (b2 == null ? 0 : b2.hashCode())) * 31;
        C c2 = this.f2736e;
        return iHashCode2 + (c2 != null ? c2.hashCode() : 0);
    }

    public String toString() {
        return '(' + this.f2734c + ", " + this.f2735d + ", " + this.f2736e + ')';
    }
}
