package o; import java.util.Iterator; /* loaded from: classes6.dex */ public final class fRE implements Iterable { private final Iterable c; private fRE(Iterable iterable) { this.c = iterable; } @Override // java.lang.Iterable public final Iterator iterator() { return this.c.iterator(); } public static fRE e(Iterable iterable) { return new fRE<>(iterable); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } Iterable iterable = this.c; Iterable iterable2 = ((fRE) obj).c; if (iterable != null) { if (iterable.equals(iterable2)) { return true; } } else if (iterable2 == null) { return true; } return false; } public final int hashCode() { Iterable iterable = this.c; if (iterable != null) { return iterable.hashCode(); } return 0; } public final String toString() { return this.c.toString(); } }