├── LICENSE ├── ObserverSet.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ObserverSet ├── Info.plist └── ObserverSet.swift └── ObserverSetTests ├── CaptureSemanticsTests.swift ├── Info.plist └── ObserverSetTests.swift /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/LICENSE -------------------------------------------------------------------------------- /ObserverSet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/ObserverSet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObserverSet.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/ObserverSet.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ObserverSet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/ObserverSet/Info.plist -------------------------------------------------------------------------------- /ObserverSet/ObserverSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/ObserverSet/ObserverSet.swift -------------------------------------------------------------------------------- /ObserverSetTests/CaptureSemanticsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/ObserverSetTests/CaptureSemanticsTests.swift -------------------------------------------------------------------------------- /ObserverSetTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/ObserverSetTests/Info.plist -------------------------------------------------------------------------------- /ObserverSetTests/ObserverSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/SwiftObserverSet/HEAD/ObserverSetTests/ObserverSetTests.swift --------------------------------------------------------------------------------