| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // SectionModel.swift
- // RxDataSources
- //
- // Created by Krunoslav Zaher on 6/16/15.
- // Copyright © 2015 Krunoslav Zaher. All rights reserved.
- //
- import Foundation
- public struct SectionModel<Section, ItemType> {
- public var model: Section
- public var items: [Item]
- public init(model: Section, items: [Item]) {
- self.model = model
- self.items = items
- }
- }
- extension SectionModel
- : SectionModelType {
- public typealias Identity = Section
- public typealias Item = ItemType
-
- public var identity: Section {
- return model
- }
- }
- extension SectionModel
- : CustomStringConvertible {
- public var description: String {
- return "\(self.model) > \(items)"
- }
- }
- extension SectionModel {
- public init(original: SectionModel<Section, Item>, items: [Item]) {
- self.model = original.model
- self.items = items
- }
- }
- extension SectionModel
- : Equatable where Section: Equatable, ItemType: Equatable {
-
- public static func == (lhs: SectionModel, rhs: SectionModel) -> Bool {
- return lhs.model == rhs.model
- && lhs.items == rhs.items
- }
- }
|