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