equatable Questions
2
Solved
I have a class with the protocol Equatable. The class looks like this:
class Item: Equatable {
let item: [[Modifications: String]]
init(item: [[Modifications: String]]) {
self.item = item
}
...
2
Solved
I have the the below Protocol:
protocol Cacheable {
//....//
func identifier() -> String
}
Can I make Cacheable implements Equatable ?
when I do the following:
extension Cacheable: Equata...
© 2022 - 2024 — McMap. All rights reserved.