package g;

import java.io.Serializable;

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

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

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    public final B f4184e;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    public final C f4185f;

    public o(A a, B b2, C c2) {
        this.f4183b = a;
        this.f4184e = b2;
        this.f4185f = c2;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof o)) {
            return false;
        }
        o oVar = (o) obj;
        return g.h0.c.l.a(this.f4183b, oVar.f4183b) && g.h0.c.l.a(this.f4184e, oVar.f4184e) && g.h0.c.l.a(this.f4185f, oVar.f4185f);
    }

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

    public String toString() {
        return '(' + this.f4183b + ", " + this.f4184e + ", " + this.f4185f + ')';
    }
}
