update header for MIT license, move all operator declarations to one file

This commit is contained in:
John Estropia
2023-06-15 16:05:14 +09:00
parent d8235cf2e5
commit 7e37219315
5 changed files with 57 additions and 39 deletions

View File

@@ -27,21 +27,6 @@ import Foundation
import CoreData
// MARK: - ~
/**
Connects multiple `KeyPathStringConvertible`s to create a type-safe chain usable in query/fetch expressions
```
let owner = dataStack.fetchOne(
From<Pet>().where(
(\.master ~ \.name) == "John"
)
)
```
*/
infix operator ~ : AdditionPrecedence
// MARK: - WhereExpressionTrait
/**