This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import Foundation | |
| class Dispatcher { | |
| private var items = [DispatcherIdentifier: DispatchWorkItem]() | |
| private let queue: DispatchQueue | |
| deinit { | |
| cancelAllActions() | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //The following code depends on this: | |
| //https://gist.github.com/sisoje/f1444dff45618938ce81324a81316690#file-nspredicate-keypath-operators-swift | |
| import CoreData | |
| extension NSManagedObject { | |
| static var entityName: String { | |
| return entity().name! | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //declare which keys in the JSON we are interested in | |
| enum CodingKeys: String, CodingKey { | |
| case status | |
| case confirmedUsers | |
| case position | |
| case reason | |
| } | |
| //declare the possible values os the status key | |
| private enum EventConfirmationStatus: String, Codable { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ------ ⭣ Redundant Else ⭣ ------ | |
| if someCondition { | |
| return meh | |
| } else { | |
| let someValue = callSomeFunction() | |
| return someValue | |
| } | |
| ----------- ⭣ Fine ⭣ ----------- | 
OlderNewer