This commit is contained in:
Ali
2021-09-03 00:45:22 +04:00
parent 8aefa19d31
commit 1fe0d4a75b
53 changed files with 489 additions and 566 deletions

View File

@@ -77,18 +77,6 @@ struct ReverseIndexNamespace: Hashable {
init(_ value: Int32?) {
self.value = value
}
var hashValue: Int {
if let value = self.value {
return value.hashValue
} else {
return 0
}
}
static func ==(lhs: ReverseIndexNamespace, rhs: ReverseIndexNamespace) -> Bool {
return lhs.value == rhs.value
}
}
final class ReverseIndexReferenceTable<T: ReverseIndexReference>: Table {