delete errant operator

This commit is contained in:
John Estropia
2017-09-26 11:59:28 +09:00
parent 645034dde5
commit 4ead3c34dd

View File

@@ -379,18 +379,6 @@ public extension RelationshipContainer.ToOne {
return !Where(relationship.keyPath, isEqualTo: object)
}
/**
Creates a `Where` clause from a `CoreStoreObject.Relationship` property.
```
let dog = CoreStore.fetchOne(From<Dog>(), Dog.where { $0.master ~= me })
```
*/
@inline(__always)
public static func ~= (_ relationship: RelationshipContainer<O>.ToOne<D>, _ object: D?) -> Where<O> {
return Where(relationship.keyPath, isEqualTo: object)
}
/**
Creates a `Where` clause from a `CoreStoreObject.Relationship` property.
```