Avatar
Avatar
Iceman
@swift-6.1.2 public protocol EqualById { var id: String { get } } extension EqualById { public static func ==(lhs: Self, rhs: EqualById) -> Bool { return lhs.id == rhs.id } }
no output