mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-03-18 15:33:54 +01:00
Unify generic labeling
This commit is contained in:
@@ -41,13 +41,19 @@ import CoreData
|
||||
```
|
||||
*/
|
||||
@available(macOS 10.12, *)
|
||||
public struct SectionMonitorChainBuilder<D: DynamicObject>: SectionMonitorBuilderType {
|
||||
public struct SectionMonitorChainBuilder<O: DynamicObject>: SectionMonitorBuilderType {
|
||||
|
||||
// MARK: SectionMonitorBuilderType
|
||||
|
||||
public var from: From<D>
|
||||
public var sectionBy: SectionBy<D>
|
||||
public var from: From<O>
|
||||
public var sectionBy: SectionBy<O>
|
||||
public var fetchClauses: [FetchClause] = []
|
||||
|
||||
|
||||
// MARK: Deprecated
|
||||
|
||||
@available(*, deprecated, renamed: "O")
|
||||
public typealias D = O
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user