├── .gitignore ├── RxSwfit+3.3.0 ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Checkouts │ │ └── RxSwift │ │ ├── .github │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .jazzy.yml │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Dangerfile │ │ ├── Documentation │ │ ├── ComparisonWithOtherLibraries.md │ │ ├── DesignRationale.md │ │ ├── ExampleApp.md │ │ ├── Examples.md │ │ ├── GettingStarted.md │ │ ├── HotAndColdObservables.md │ │ ├── Linux.md │ │ ├── MathBehindRx.md │ │ ├── Migration.md │ │ ├── NewFeatureRequestTemplate.md │ │ ├── Playgrounds.md │ │ ├── Schedulers.md │ │ ├── Subjects.md │ │ ├── Tips.md │ │ ├── UnitTests.md │ │ ├── Units.md │ │ ├── Warnings.md │ │ └── Why.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE.md │ │ ├── Package.swift │ │ ├── Platform │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ │ ├── Preprocessor │ │ ├── Preprocessor.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── Preprocessor │ │ │ └── main.swift │ │ └── README.md │ │ ├── README.md │ │ ├── Rx.playground │ │ ├── Pages │ │ │ ├── Combining_Operators.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Connectable_Operators.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Creating_and_Subscribing_to_Observables.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Debugging_Operators.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Enable_RxSwift.resourceCount.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Error_Handling_Operators.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Filtering_and_Conditional_Operators.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Introduction.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Mathematical_and_Aggregate_Operators.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Table_of_Contents.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Transforming_Operators.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ └── Working_with_Subjects.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ ├── Sources │ │ │ └── SupportCode.swift │ │ ├── SupportCode.remap │ │ └── contents.xcplayground │ │ ├── Rx.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── xcbaselines │ │ │ └── C8E8BA541E2C181A00A4AC2C.xcbaseline │ │ │ │ ├── 91761072-433E-43DC-A058-545FB88C59EC.plist │ │ │ │ ├── 996C445D-86F0-429E-92A9-44EBD3769290.plist │ │ │ │ ├── B553A9F9-C6F1-4009-9BDC-AC42F9D31E38.plist │ │ │ │ └── Info.plist │ │ │ └── xcschemes │ │ │ ├── RxBlocking-iOS.xcscheme │ │ │ ├── RxBlocking-macOS.xcscheme │ │ │ ├── RxBlocking-tvOS.xcscheme │ │ │ ├── RxBlocking-watchOS.xcscheme │ │ │ ├── RxCocoa-iOS.xcscheme │ │ │ ├── RxCocoa-macOS.xcscheme │ │ │ ├── RxCocoa-tvOS.xcscheme │ │ │ ├── RxCocoa-watchOS.xcscheme │ │ │ ├── RxSwift-iOS.xcscheme │ │ │ ├── RxSwift-macOS.xcscheme │ │ │ ├── RxSwift-tvOS.xcscheme │ │ │ ├── RxSwift-watchOS.xcscheme │ │ │ ├── RxTests-iOS.xcscheme │ │ │ ├── RxTests-macOS.xcscheme │ │ │ └── RxTests-tvOS.xcscheme │ │ ├── Rx.xcworkspace │ │ └── contents.xcworkspacedata │ │ ├── RxBlocking.podspec │ │ ├── RxBlocking │ │ ├── BlockingObservable+Operators.swift │ │ ├── BlockingObservable.swift │ │ ├── Info.plist │ │ ├── ObservableConvertibleType+Blocking.swift │ │ ├── Platform │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── README.md │ │ ├── Resources.swift │ │ └── RunLoopLock.swift │ │ ├── RxCocoa.podspec │ │ ├── RxCocoa │ │ ├── CocoaUnits │ │ │ ├── ControlEvent.swift │ │ │ ├── ControlProperty.swift │ │ │ ├── Driver │ │ │ │ ├── ControlEvent+Driver.swift │ │ │ │ ├── ControlProperty+Driver.swift │ │ │ │ ├── Driver+Subscription.swift │ │ │ │ ├── Driver.swift │ │ │ │ ├── ObservableConvertibleType+Driver.swift │ │ │ │ └── Variable+Driver.swift │ │ │ ├── SharedSequence │ │ │ │ ├── ObservableConvertibleType+SharedSequence.swift │ │ │ │ ├── SharedSequence+Operators+arity.swift │ │ │ │ ├── SharedSequence+Operators+arity.tt │ │ │ │ ├── SharedSequence+Operators.swift │ │ │ │ ├── SharedSequence.swift │ │ │ │ └── Variable+SharedSequence.swift │ │ │ └── UIBindingObserver.swift │ │ ├── Common │ │ │ ├── ControlTarget.swift │ │ │ ├── DelegateProxy.swift │ │ │ ├── DelegateProxyType.swift │ │ │ ├── NSLayoutConstraint+Rx.swift │ │ │ ├── Observable+Bind.swift │ │ │ ├── RxCocoaObjCRuntimeError+Extensions.swift │ │ │ ├── RxTarget.swift │ │ │ ├── SectionedViewDataSourceType.swift │ │ │ └── TextInput.swift │ │ ├── Foundation │ │ │ ├── KVORepresentable+CoreGraphics.swift │ │ │ ├── KVORepresentable+Swift.swift │ │ │ ├── KVORepresentable.swift │ │ │ ├── Logging.swift │ │ │ ├── NSObject+Rx+KVORepresentable.swift │ │ │ ├── NSObject+Rx+RawRepresentable.swift │ │ │ ├── NSObject+Rx.swift │ │ │ ├── NotificationCenter+Rx.swift │ │ │ └── URLSession+Rx.swift │ │ ├── Info.plist │ │ ├── Platform │ │ │ └── DispatchQueue+Extensions.swift │ │ ├── Runtime │ │ │ ├── _RX.m │ │ │ ├── _RXDelegateProxy.m │ │ │ ├── _RXKVOObserver.m │ │ │ ├── _RXObjCRuntime.m │ │ │ └── include │ │ │ │ ├── RxCocoaRuntime.h │ │ │ │ ├── _RX.h │ │ │ │ ├── _RXDelegateProxy.h │ │ │ │ ├── _RXKVOObserver.h │ │ │ │ └── _RXObjCRuntime.h │ │ ├── RxCocoa.h │ │ ├── RxCocoa.swift │ │ ├── iOS │ │ │ ├── DataSources │ │ │ │ ├── RxCollectionViewReactiveArrayDataSource.swift │ │ │ │ └── RxTableViewReactiveArrayDataSource.swift │ │ │ ├── Events │ │ │ │ └── ItemEvents.swift │ │ │ ├── NSTextStorage+Rx.swift │ │ │ ├── Protocols │ │ │ │ ├── RxCollectionViewDataSourceType.swift │ │ │ │ └── RxTableViewDataSourceType.swift │ │ │ ├── Proxies │ │ │ │ ├── RxCollectionViewDataSourceProxy.swift │ │ │ │ ├── RxCollectionViewDelegateProxy.swift │ │ │ │ ├── RxPickerViewDelegateProxy.swift │ │ │ │ ├── RxScrollViewDelegateProxy.swift │ │ │ │ ├── RxSearchBarDelegateProxy.swift │ │ │ │ ├── RxSearchControllerDelegateProxy.swift │ │ │ │ ├── RxTabBarControllerDelegateProxy.swift │ │ │ │ ├── RxTabBarDelegateProxy.swift │ │ │ │ ├── RxTableViewDataSourceProxy.swift │ │ │ │ ├── RxTableViewDelegateProxy.swift │ │ │ │ ├── RxTextStorageDelegateProxy.swift │ │ │ │ ├── RxTextViewDelegateProxy.swift │ │ │ │ └── RxWebViewDelegateProxy.swift │ │ │ ├── UIActivityIndicatorView+Rx.swift │ │ │ ├── UIAlertAction+Rx.swift │ │ │ ├── UIApplication+Rx.swift │ │ │ ├── UIBarButtonItem+Rx.swift │ │ │ ├── UIButton+Rx.swift │ │ │ ├── UICollectionView+Rx.swift │ │ │ ├── UIControl+Rx.swift │ │ │ ├── UIDatePicker+Rx.swift │ │ │ ├── UIGestureRecognizer+Rx.swift │ │ │ ├── UIImageView+Rx.swift │ │ │ ├── UILabel+Rx.swift │ │ │ ├── UINavigationItem+Rx.swift │ │ │ ├── UIPageControl+Rx.swift │ │ │ ├── UIPickerView+Rx.swift │ │ │ ├── UIProgressView+Rx.swift │ │ │ ├── UIRefreshControl+Rx.swift │ │ │ ├── UIScrollView+Rx.swift │ │ │ ├── UISearchBar+Rx.swift │ │ │ ├── UISearchController+Rx.swift │ │ │ ├── UISegmentedControl+Rx.swift │ │ │ ├── UISlider+Rx.swift │ │ │ ├── UIStepper+Rx.swift │ │ │ ├── UISwitch+Rx.swift │ │ │ ├── UITabBar+Rx.swift │ │ │ ├── UITabBarController+Rx.swift │ │ │ ├── UITabBarItem+Rx.swift │ │ │ ├── UITableView+Rx.swift │ │ │ ├── UITextField+Rx.swift │ │ │ ├── UITextView+Rx.swift │ │ │ ├── UIView+Rx.swift │ │ │ ├── UIViewController+Rx.swift │ │ │ └── UIWebView+Rx.swift │ │ └── macOS │ │ │ ├── NSButton+Rx.swift │ │ │ ├── NSControl+Rx.swift │ │ │ ├── NSImageView+Rx.swift │ │ │ ├── NSSlider+Rx.swift │ │ │ ├── NSTextField+Rx.swift │ │ │ └── NSView+Rx.swift │ │ ├── RxExample │ │ ├── Extensions │ │ │ ├── CLLocationManager+Rx.swift │ │ │ ├── RxCLLocationManagerDelegateProxy.swift │ │ │ ├── RxImagePickerDelegateProxy.swift │ │ │ └── UIImagePickerController+Rx.swift │ │ ├── RxDataSources │ │ │ ├── DataSources+Rx │ │ │ │ ├── RxCollectionViewSectionedAnimatedDataSource.swift │ │ │ │ ├── RxCollectionViewSectionedReloadDataSource.swift │ │ │ │ ├── RxTableViewSectionedAnimatedDataSource.swift │ │ │ │ └── RxTableViewSectionedReloadDataSource.swift │ │ │ ├── DataSources │ │ │ │ ├── AnimatableSectionModel.swift │ │ │ │ ├── AnimatableSectionModelType+ItemPath.swift │ │ │ │ ├── AnimatableSectionModelType.swift │ │ │ │ ├── AnimationConfiguration.swift │ │ │ │ ├── Array+Extensions.swift │ │ │ │ ├── Changeset.swift │ │ │ │ ├── CollectionViewSectionedDataSource.swift │ │ │ │ ├── DataSources.swift │ │ │ │ ├── Differentiator.swift │ │ │ │ ├── FloatingPointType+IdentifiableType.swift │ │ │ │ ├── IdentifiableType.swift │ │ │ │ ├── IdentifiableValue.swift │ │ │ │ ├── IntegerType+IdentifiableType.swift │ │ │ │ ├── ItemPath.swift │ │ │ │ ├── Optional+Extensions.swift │ │ │ │ ├── SectionModel.swift │ │ │ │ ├── SectionModelType.swift │ │ │ │ ├── String+IdentifiableType.swift │ │ │ │ ├── TableViewSectionedDataSource.swift │ │ │ │ └── UI+SectionedViewType.swift │ │ │ └── README.md │ │ ├── RxExample-iOSTests │ │ │ ├── CLLocationManager+RxTests.swift │ │ │ ├── Info.plist │ │ │ ├── Mocks │ │ │ │ ├── MockGitHubAPI.swift │ │ │ │ ├── MockWireframe.swift │ │ │ │ ├── NotImplementedStubs.swift │ │ │ │ └── ValidationResult+Equatable.swift │ │ │ ├── RxExample_iOSTests.swift │ │ │ ├── RxTest.swift │ │ │ ├── TestScheduler+MarbleTests.swift │ │ │ └── UIImagePickerController+RxTests.swift │ │ ├── RxExample-iOSUITests │ │ │ ├── FlowTests.swift │ │ │ └── Info.plist │ │ ├── RxExample-macOSUITests │ │ │ ├── Info.plist │ │ │ └── RxExample_macOSUITests.swift │ │ ├── RxExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── RxExample-iOS.xcscheme │ │ │ │ ├── RxExample-iOSTests.xcscheme │ │ │ │ ├── RxExample-iOSUITests.xcscheme │ │ │ │ ├── RxExample-macOS.xcscheme │ │ │ │ └── RxExample-macOSUITests.xcscheme │ │ └── RxExample │ │ │ ├── Application+Extensions.swift │ │ │ ├── Example.swift │ │ │ ├── Examples │ │ │ ├── APIWrappers │ │ │ │ ├── APIWrappers.storyboard │ │ │ │ └── APIWrappersViewController.swift │ │ │ ├── Calculator │ │ │ │ ├── Calculator.storyboard │ │ │ │ ├── CalculatorAction.swift │ │ │ │ ├── CalculatorState.swift │ │ │ │ ├── CalculatorViewController.swift │ │ │ │ └── Operation.swift │ │ │ ├── Dependencies.swift │ │ │ ├── GeolocationExample │ │ │ │ ├── Geolocation.storyboard │ │ │ │ └── GeolocationViewController.swift │ │ │ ├── GitHubSearchRepositories │ │ │ │ ├── GitHubSearchRepositories.storyboard │ │ │ │ ├── GitHubSearchRepositoriesAPI.swift │ │ │ │ ├── GitHubSearchRepositoriesViewController.swift │ │ │ │ └── UINavigationController+Extensions.swift │ │ │ ├── GitHubSignup │ │ │ │ ├── BindingExtensions.swift │ │ │ │ ├── DefaultImplementations.swift │ │ │ │ ├── GitHubSignup1.storyboard │ │ │ │ ├── GitHubSignup2.storyboard │ │ │ │ ├── Protocols.swift │ │ │ │ ├── UsingDriver │ │ │ │ │ ├── GitHubSignupViewController2.swift │ │ │ │ │ └── GithubSignupViewModel2.swift │ │ │ │ └── UsingVanillaObservables │ │ │ │ │ ├── GitHubSignupViewController1.swift │ │ │ │ │ └── GithubSignupViewModel1.swift │ │ │ ├── ImagePicker │ │ │ │ ├── ImagePicker.storyboard │ │ │ │ ├── ImagePickerController.swift │ │ │ │ └── UIImagePickerController+RxCreate.swift │ │ │ ├── Numbers │ │ │ │ ├── Numbers.storyboard │ │ │ │ └── NumbersViewController.swift │ │ │ ├── SimpleTableViewExample │ │ │ │ ├── SimpleTableViewExample.storyboard │ │ │ │ └── SimpleTableViewExampleViewController.swift │ │ │ ├── SimpleTableViewExampleSectioned │ │ │ │ ├── SimpleTableViewExampleSectioned.storyboard │ │ │ │ └── SimpleTableViewExampleSectionedViewController.swift │ │ │ ├── SimpleValidation │ │ │ │ ├── SimpleValidation.storyboard │ │ │ │ └── SimpleValidationViewController.swift │ │ │ ├── TableViewPartialUpdates │ │ │ │ ├── NumberCell.swift │ │ │ │ ├── NumberSectionView.swift │ │ │ │ ├── PartialUpdates.storyboard │ │ │ │ └── PartialUpdatesViewController.swift │ │ │ ├── TableViewWithEditingCommands │ │ │ │ ├── DetailViewController.swift │ │ │ │ ├── RandomUserAPI.swift │ │ │ │ ├── TableViewWithEditingCommands.storyboard │ │ │ │ ├── TableViewWithEditingCommandsViewController.swift │ │ │ │ ├── UIImageView+Extensions.swift │ │ │ │ └── User.swift │ │ │ ├── WikipediaImageSearch │ │ │ │ ├── ViewModels │ │ │ │ │ └── SearchResultViewModel.swift │ │ │ │ ├── Views │ │ │ │ │ ├── CollectionViewImageCell.swift │ │ │ │ │ ├── WikipediaImageCell.xib │ │ │ │ │ ├── WikipediaSearchCell.swift │ │ │ │ │ ├── WikipediaSearchCell.xib │ │ │ │ │ └── WikipediaSearchViewController.swift │ │ │ │ ├── WikipediaAPI │ │ │ │ │ ├── WikipediaAPI.swift │ │ │ │ │ ├── WikipediaPage.swift │ │ │ │ │ └── WikipediaSearchResult.swift │ │ │ │ └── WikipediaSearch.storyboard │ │ │ └── macOS simple example │ │ │ │ └── IntroductionExampleViewController.swift │ │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x-1.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-60@2x-1.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-Small.png │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ ├── Rx_Logo-iPad.png │ │ │ │ └── Rx_Logo_M.png │ │ │ └── ReactiveExtensionsLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReactiveExtensionsLogo-2.png │ │ │ │ └── ReactiveExtensionsLogo.png │ │ │ ├── Info-iOS.plist │ │ │ ├── Info-macOS.plist │ │ │ ├── Operators.swift │ │ │ ├── RxExample.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ └── RxExample.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Services │ │ │ ├── ActivityIndicator.swift │ │ │ ├── DownloadableImage.swift │ │ │ ├── GeolocationService.swift │ │ │ ├── HtmlParsing.swift │ │ │ ├── ImageService.swift │ │ │ ├── PseudoRandomGenerator.swift │ │ │ ├── Randomizer.swift │ │ │ ├── Reachability.swift │ │ │ ├── ReachabilityService.swift │ │ │ ├── UIImage+Extensions.swift │ │ │ ├── UIImageView+DownloadableImage.swift │ │ │ └── Wireframe.swift │ │ │ ├── String+URL.swift │ │ │ ├── ViewController.swift │ │ │ ├── iOS │ │ │ ├── AppDelegate.swift │ │ │ ├── LaunchScreen.xib │ │ │ ├── Main.storyboard │ │ │ ├── RootViewController.swift │ │ │ └── UITableView+Extensions.swift │ │ │ └── macOS │ │ │ ├── AppDelegate.swift │ │ │ └── Main.storyboard │ │ ├── RxSwift.podspec │ │ ├── RxSwift │ │ ├── AnyObserver.swift │ │ ├── Cancelable.swift │ │ ├── Concurrency │ │ │ ├── AsyncLock.swift │ │ │ ├── Lock.swift │ │ │ ├── LockOwnerType.swift │ │ │ ├── SynchronizedDisposeType.swift │ │ │ ├── SynchronizedOnType.swift │ │ │ ├── SynchronizedSubscribeType.swift │ │ │ └── SynchronizedUnsubscribeType.swift │ │ ├── ConnectableObservableType.swift │ │ ├── Deprecated.swift │ │ ├── Disposable.swift │ │ ├── Disposables │ │ │ ├── AnonymousDisposable.swift │ │ │ ├── BinaryDisposable.swift │ │ │ ├── BooleanDisposable.swift │ │ │ ├── CompositeDisposable.swift │ │ │ ├── Disposables.swift │ │ │ ├── DisposeBag.swift │ │ │ ├── DisposeBase.swift │ │ │ ├── NopDisposable.swift │ │ │ ├── RefCountDisposable.swift │ │ │ ├── ScheduledDisposable.swift │ │ │ ├── SerialDisposable.swift │ │ │ ├── SingleAssignmentDisposable.swift │ │ │ └── SubscriptionDisposable.swift │ │ ├── Errors.swift │ │ ├── Event.swift │ │ ├── Extensions │ │ │ ├── Bag+Rx.swift │ │ │ └── String+Rx.swift │ │ ├── GroupedObservable.swift │ │ ├── ImmediateSchedulerType.swift │ │ ├── Info.plist │ │ ├── Observable.swift │ │ ├── ObservableConvertibleType.swift │ │ ├── ObservableType+Extensions.swift │ │ ├── ObservableType.swift │ │ ├── Observables │ │ │ ├── Implementations │ │ │ │ ├── AddRef.swift │ │ │ │ ├── Amb.swift │ │ │ │ ├── AnonymousObservable.swift │ │ │ │ ├── AsMaybe.swift │ │ │ │ ├── AsSingle.swift │ │ │ │ ├── Buffer.swift │ │ │ │ ├── Catch.swift │ │ │ │ ├── CombineLatest+Collection.swift │ │ │ │ ├── CombineLatest+arity.swift │ │ │ │ ├── CombineLatest+arity.tt │ │ │ │ ├── CombineLatest.swift │ │ │ │ ├── Concat.swift │ │ │ │ ├── ConnectableObservable.swift │ │ │ │ ├── Debounce.swift │ │ │ │ ├── Debug.swift │ │ │ │ ├── DefaultIfEmpty.swift │ │ │ │ ├── Deferred.swift │ │ │ │ ├── Delay.swift │ │ │ │ ├── DelaySubscription.swift │ │ │ │ ├── DistinctUntilChanged.swift │ │ │ │ ├── Do.swift │ │ │ │ ├── ElementAt.swift │ │ │ │ ├── Empty.swift │ │ │ │ ├── Error.swift │ │ │ │ ├── Filter.swift │ │ │ │ ├── Generate.swift │ │ │ │ ├── GroupBy.swift │ │ │ │ ├── Just.swift │ │ │ │ ├── Map.swift │ │ │ │ ├── Merge.swift │ │ │ │ ├── Multicast.swift │ │ │ │ ├── Never.swift │ │ │ │ ├── ObserveOn.swift │ │ │ │ ├── ObserveOnSerialDispatchQueue.swift │ │ │ │ ├── Optional.swift │ │ │ │ ├── Producer.swift │ │ │ │ ├── Range.swift │ │ │ │ ├── Reduce.swift │ │ │ │ ├── RefCount.swift │ │ │ │ ├── Repeat.swift │ │ │ │ ├── RetryWhen.swift │ │ │ │ ├── Sample.swift │ │ │ │ ├── Scan.swift │ │ │ │ ├── Sequence.swift │ │ │ │ ├── ShareReplay1.swift │ │ │ │ ├── ShareReplay1WhileConnected.swift │ │ │ │ ├── SingleAsync.swift │ │ │ │ ├── Sink.swift │ │ │ │ ├── Skip.swift │ │ │ │ ├── SkipUntil.swift │ │ │ │ ├── SkipWhile.swift │ │ │ │ ├── StartWith.swift │ │ │ │ ├── SubscribeOn.swift │ │ │ │ ├── Switch.swift │ │ │ │ ├── SwitchIfEmpty.swift │ │ │ │ ├── Take.swift │ │ │ │ ├── TakeLast.swift │ │ │ │ ├── TakeUntil.swift │ │ │ │ ├── TakeWhile.swift │ │ │ │ ├── Throttle.swift │ │ │ │ ├── Timeout.swift │ │ │ │ ├── Timer.swift │ │ │ │ ├── ToArray.swift │ │ │ │ ├── Using.swift │ │ │ │ ├── Window.swift │ │ │ │ ├── WithLatestFrom.swift │ │ │ │ ├── Zip+Collection.swift │ │ │ │ ├── Zip+arity.swift │ │ │ │ ├── Zip+arity.tt │ │ │ │ └── Zip.swift │ │ │ ├── Observable+Aggregate.swift │ │ │ ├── Observable+Binding.swift │ │ │ ├── Observable+Concurrency.swift │ │ │ ├── Observable+Creation.swift │ │ │ ├── Observable+Debug.swift │ │ │ ├── Observable+Multiple.swift │ │ │ ├── Observable+Single.swift │ │ │ ├── Observable+StandardSequenceOperators.swift │ │ │ └── Observable+Time.swift │ │ ├── ObserverType.swift │ │ ├── Observers │ │ │ ├── AnonymousObserver.swift │ │ │ ├── ObserverBase.swift │ │ │ └── TailRecursiveSink.swift │ │ ├── Platform │ │ │ ├── DataStructures │ │ │ │ ├── Bag.swift │ │ │ │ ├── InfiniteSequence.swift │ │ │ │ ├── PriorityQueue.swift │ │ │ │ └── Queue.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── Reactive.swift │ │ ├── Rx.swift │ │ ├── RxMutableBox.swift │ │ ├── SchedulerType.swift │ │ ├── Schedulers │ │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ │ ├── ConcurrentMainScheduler.swift │ │ │ ├── CurrentThreadScheduler.swift │ │ │ ├── HistoricalScheduler.swift │ │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ │ ├── ImmediateScheduler.swift │ │ │ ├── Internal │ │ │ │ ├── AnonymousInvocable.swift │ │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ │ ├── InvocableScheduledItem.swift │ │ │ │ ├── InvocableType.swift │ │ │ │ ├── ScheduledItem.swift │ │ │ │ └── ScheduledItemType.swift │ │ │ ├── MainScheduler.swift │ │ │ ├── OperationQueueScheduler.swift │ │ │ ├── RecursiveScheduler.swift │ │ │ ├── SchedulerServices+Emulation.swift │ │ │ ├── SerialDispatchQueueScheduler.swift │ │ │ ├── VirtualTimeConverterType.swift │ │ │ └── VirtualTimeScheduler.swift │ │ ├── Subjects │ │ │ ├── AsyncSubject.swift │ │ │ ├── BehaviorSubject.swift │ │ │ ├── PublishSubject.swift │ │ │ ├── ReplaySubject.swift │ │ │ ├── SubjectType.swift │ │ │ └── Variable.swift │ │ └── Units │ │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ │ ├── PrimitiveSequence+Zip+arity.tt │ │ │ └── PrimitiveSequence.swift │ │ ├── RxTest.podspec │ │ ├── RxTest │ │ ├── Any+Equatable.swift │ │ ├── ColdObservable.swift │ │ ├── Event+Equatable.swift │ │ ├── HotObservable.swift │ │ ├── Info.plist │ │ ├── Platform │ │ │ └── DataStructures │ │ │ │ └── Bag.swift │ │ ├── Recorded.swift │ │ ├── RxTests.swift │ │ ├── Schedulers │ │ │ ├── TestScheduler.swift │ │ │ └── TestSchedulerVirtualTimeConverter.swift │ │ ├── Subscription.swift │ │ ├── TestableObservable.swift │ │ ├── TestableObserver.swift │ │ └── XCTest+Rx.swift │ │ ├── Sources │ │ ├── AllTestz │ │ │ ├── Anomalies.swift │ │ │ ├── AnonymousObservable+Test.swift │ │ │ ├── AssumptionsTest.swift │ │ │ ├── AsyncSubjectTests.swift │ │ │ ├── BackgroundThreadPrimitiveHotObservable.swift │ │ │ ├── Bag.swift │ │ │ ├── BehaviorSubjectTest.swift │ │ │ ├── CurrentThreadSchedulerTest.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── DisposableTest.swift │ │ │ ├── Driver+Extensions.swift │ │ │ ├── Driver+Test.swift │ │ │ ├── ElementIndexPair.swift │ │ │ ├── EquatableArray.swift │ │ │ ├── Event+Test.swift │ │ │ ├── HistoricalSchedulerTest.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── MainSchedulerTests.swift │ │ │ ├── MainThreadPrimitiveHotObservable.swift │ │ │ ├── MockDisposable.swift │ │ │ ├── MySubject.swift │ │ │ ├── NotificationCenterTests.swift │ │ │ ├── Observable+AggregateTest.swift │ │ │ ├── Observable+BindingTest.swift │ │ │ ├── Observable+BlockingTest.swift │ │ │ ├── Observable+ConcurrencyTest.swift │ │ │ ├── Observable+CreationTest.swift │ │ │ ├── Observable+DebugTest.swift │ │ │ ├── Observable+Extensions.swift │ │ │ ├── Observable+MultipleTest+CombineLatest+Fixed.swift │ │ │ ├── Observable+MultipleTest+CombineLatest.swift │ │ │ ├── Observable+MultipleTest+Zip+Fixed.swift │ │ │ ├── Observable+MultipleTest+Zip.swift │ │ │ ├── Observable+MultipleTest.swift │ │ │ ├── Observable+MultipleTest2.swift │ │ │ ├── Observable+MultipleTest3.swift │ │ │ ├── Observable+SingleTest.swift │ │ │ ├── Observable+StandardSequenceOperatorsTest.swift │ │ │ ├── Observable+StandardSequenceOperatorsTest2.swift │ │ │ ├── Observable+SubscriptionTest.swift │ │ │ ├── Observable+TimeTest.swift │ │ │ ├── Observable.Extensions.swift │ │ │ ├── ObserverTests.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ ├── PrimitiveHotObservable.swift │ │ │ ├── PrimitiveMockObserver.swift │ │ │ ├── PrimitiveSequenceTest+zip+arity.swift │ │ │ ├── PrimitiveSequenceTest.swift │ │ │ ├── PriorityQueue.swift │ │ │ ├── PublishSubjectTest.swift │ │ │ ├── Queue.swift │ │ │ ├── QueueTests.swift │ │ │ ├── Reactive+Tests.swift │ │ │ ├── Recorded+Timeless.swift │ │ │ ├── RecursiveLock.swift │ │ │ ├── RecursiveLockTest.swift │ │ │ ├── ReplaySubjectTest.swift │ │ │ ├── RxMutableBox.swift │ │ │ ├── RxTest.swift │ │ │ ├── SchedulerTests.swift │ │ │ ├── SubjectConcurrencyTest.swift │ │ │ ├── TestConnectableObservable.swift │ │ │ ├── TestErrors.swift │ │ │ ├── TestVirtualScheduler.swift │ │ │ ├── VariableTest.swift │ │ │ ├── VirtualSchedulerTest.swift │ │ │ ├── XCTest+AllTests.swift │ │ │ └── main.swift │ │ ├── RxBlocking │ │ │ ├── BlockingObservable+Operators.swift │ │ │ ├── BlockingObservable.swift │ │ │ ├── ObservableConvertibleType+Blocking.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ ├── RecursiveLock.swift │ │ │ ├── Resources.swift │ │ │ └── RunLoopLock.swift │ │ ├── RxCocoa │ │ │ ├── ControlEvent+Driver.swift │ │ │ ├── ControlEvent.swift │ │ │ ├── ControlProperty+Driver.swift │ │ │ ├── ControlProperty.swift │ │ │ ├── ControlTarget.swift │ │ │ ├── DelegateProxy.swift │ │ │ ├── DelegateProxyType.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Driver+Subscription.swift │ │ │ ├── Driver.swift │ │ │ ├── ItemEvents.swift │ │ │ ├── KVORepresentable+CoreGraphics.swift │ │ │ ├── KVORepresentable+Swift.swift │ │ │ ├── KVORepresentable.swift │ │ │ ├── Logging.swift │ │ │ ├── NSButton+Rx.swift │ │ │ ├── NSControl+Rx.swift │ │ │ ├── NSImageView+Rx.swift │ │ │ ├── NSLayoutConstraint+Rx.swift │ │ │ ├── NSObject+Rx+KVORepresentable.swift │ │ │ ├── NSObject+Rx+RawRepresentable.swift │ │ │ ├── NSObject+Rx.swift │ │ │ ├── NSSlider+Rx.swift │ │ │ ├── NSTextField+Rx.swift │ │ │ ├── NSTextStorage+Rx.swift │ │ │ ├── NSView+Rx.swift │ │ │ ├── NotificationCenter+Rx.swift │ │ │ ├── Observable+Bind.swift │ │ │ ├── ObservableConvertibleType+Driver.swift │ │ │ ├── ObservableConvertibleType+SharedSequence.swift │ │ │ ├── RxCocoa.swift │ │ │ ├── RxCocoaObjCRuntimeError+Extensions.swift │ │ │ ├── RxCollectionViewDataSourceProxy.swift │ │ │ ├── RxCollectionViewDataSourceType.swift │ │ │ ├── RxCollectionViewDelegateProxy.swift │ │ │ ├── RxCollectionViewReactiveArrayDataSource.swift │ │ │ ├── RxPickerViewDelegateProxy.swift │ │ │ ├── RxScrollViewDelegateProxy.swift │ │ │ ├── RxSearchBarDelegateProxy.swift │ │ │ ├── RxSearchControllerDelegateProxy.swift │ │ │ ├── RxTabBarControllerDelegateProxy.swift │ │ │ ├── RxTabBarDelegateProxy.swift │ │ │ ├── RxTableViewDataSourceProxy.swift │ │ │ ├── RxTableViewDataSourceType.swift │ │ │ ├── RxTableViewDelegateProxy.swift │ │ │ ├── RxTableViewReactiveArrayDataSource.swift │ │ │ ├── RxTarget.swift │ │ │ ├── RxTextStorageDelegateProxy.swift │ │ │ ├── RxTextViewDelegateProxy.swift │ │ │ ├── RxWebViewDelegateProxy.swift │ │ │ ├── SectionedViewDataSourceType.swift │ │ │ ├── SharedSequence+Operators+arity.swift │ │ │ ├── SharedSequence+Operators.swift │ │ │ ├── SharedSequence.swift │ │ │ ├── TextInput.swift │ │ │ ├── UIActivityIndicatorView+Rx.swift │ │ │ ├── UIAlertAction+Rx.swift │ │ │ ├── UIApplication+Rx.swift │ │ │ ├── UIBarButtonItem+Rx.swift │ │ │ ├── UIBindingObserver.swift │ │ │ ├── UIButton+Rx.swift │ │ │ ├── UICollectionView+Rx.swift │ │ │ ├── UIControl+Rx.swift │ │ │ ├── UIDatePicker+Rx.swift │ │ │ ├── UIGestureRecognizer+Rx.swift │ │ │ ├── UIImageView+Rx.swift │ │ │ ├── UILabel+Rx.swift │ │ │ ├── UINavigationItem+Rx.swift │ │ │ ├── UIPageControl+Rx.swift │ │ │ ├── UIPickerView+Rx.swift │ │ │ ├── UIProgressView+Rx.swift │ │ │ ├── UIRefreshControl+Rx.swift │ │ │ ├── UIScrollView+Rx.swift │ │ │ ├── UISearchBar+Rx.swift │ │ │ ├── UISearchController+Rx.swift │ │ │ ├── UISegmentedControl+Rx.swift │ │ │ ├── UISlider+Rx.swift │ │ │ ├── UIStepper+Rx.swift │ │ │ ├── UISwitch+Rx.swift │ │ │ ├── UITabBar+Rx.swift │ │ │ ├── UITabBarController+Rx.swift │ │ │ ├── UITabBarItem+Rx.swift │ │ │ ├── UITableView+Rx.swift │ │ │ ├── UITextField+Rx.swift │ │ │ ├── UITextView+Rx.swift │ │ │ ├── UIView+Rx.swift │ │ │ ├── UIViewController+Rx.swift │ │ │ ├── UIWebView+Rx.swift │ │ │ ├── URLSession+Rx.swift │ │ │ ├── Variable+Driver.swift │ │ │ └── Variable+SharedSequence.swift │ │ ├── RxCocoaRuntime │ │ │ ├── _RX.m │ │ │ ├── _RXDelegateProxy.m │ │ │ ├── _RXKVOObserver.m │ │ │ ├── _RXObjCRuntime.m │ │ │ └── include │ │ │ │ ├── RxCocoaRuntime.h │ │ │ │ ├── _RX.h │ │ │ │ ├── _RXDelegateProxy.h │ │ │ │ ├── _RXKVOObserver.h │ │ │ │ └── _RXObjCRuntime.h │ │ ├── RxSwift │ │ │ ├── AddRef.swift │ │ │ ├── Amb.swift │ │ │ ├── AnonymousDisposable.swift │ │ │ ├── AnonymousInvocable.swift │ │ │ ├── AnonymousObservable.swift │ │ │ ├── AnonymousObserver.swift │ │ │ ├── AnyObserver.swift │ │ │ ├── AsMaybe.swift │ │ │ ├── AsSingle.swift │ │ │ ├── AsyncLock.swift │ │ │ ├── AsyncSubject.swift │ │ │ ├── Bag+Rx.swift │ │ │ ├── Bag.swift │ │ │ ├── BehaviorSubject.swift │ │ │ ├── BinaryDisposable.swift │ │ │ ├── BooleanDisposable.swift │ │ │ ├── Buffer.swift │ │ │ ├── Cancelable.swift │ │ │ ├── Catch.swift │ │ │ ├── CombineLatest+Collection.swift │ │ │ ├── CombineLatest+arity.swift │ │ │ ├── CombineLatest.swift │ │ │ ├── CompositeDisposable.swift │ │ │ ├── Concat.swift │ │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ │ ├── ConcurrentMainScheduler.swift │ │ │ ├── ConnectableObservable.swift │ │ │ ├── ConnectableObservableType.swift │ │ │ ├── CurrentThreadScheduler.swift │ │ │ ├── Debounce.swift │ │ │ ├── Debug.swift │ │ │ ├── DefaultIfEmpty.swift │ │ │ ├── Deferred.swift │ │ │ ├── Delay.swift │ │ │ ├── DelaySubscription.swift │ │ │ ├── Deprecated.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ ├── Disposable.swift │ │ │ ├── Disposables.swift │ │ │ ├── DisposeBag.swift │ │ │ ├── DisposeBase.swift │ │ │ ├── DistinctUntilChanged.swift │ │ │ ├── Do.swift │ │ │ ├── ElementAt.swift │ │ │ ├── Empty.swift │ │ │ ├── Error.swift │ │ │ ├── Errors.swift │ │ │ ├── Event.swift │ │ │ ├── Filter.swift │ │ │ ├── Generate.swift │ │ │ ├── GroupBy.swift │ │ │ ├── GroupedObservable.swift │ │ │ ├── HistoricalScheduler.swift │ │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ │ ├── ImmediateScheduler.swift │ │ │ ├── ImmediateSchedulerType.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── InvocableScheduledItem.swift │ │ │ ├── InvocableType.swift │ │ │ ├── Just.swift │ │ │ ├── Lock.swift │ │ │ ├── LockOwnerType.swift │ │ │ ├── MainScheduler.swift │ │ │ ├── Map.swift │ │ │ ├── Merge.swift │ │ │ ├── Multicast.swift │ │ │ ├── Never.swift │ │ │ ├── NopDisposable.swift │ │ │ ├── Observable+Aggregate.swift │ │ │ ├── Observable+Binding.swift │ │ │ ├── Observable+Concurrency.swift │ │ │ ├── Observable+Creation.swift │ │ │ ├── Observable+Debug.swift │ │ │ ├── Observable+Multiple.swift │ │ │ ├── Observable+Single.swift │ │ │ ├── Observable+StandardSequenceOperators.swift │ │ │ ├── Observable+Time.swift │ │ │ ├── Observable.swift │ │ │ ├── ObservableConvertibleType.swift │ │ │ ├── ObservableType+Extensions.swift │ │ │ ├── ObservableType.swift │ │ │ ├── ObserveOn.swift │ │ │ ├── ObserveOnSerialDispatchQueue.swift │ │ │ ├── ObserverBase.swift │ │ │ ├── ObserverType.swift │ │ │ ├── OperationQueueScheduler.swift │ │ │ ├── Optional.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ │ ├── PrimitiveSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ ├── Producer.swift │ │ │ ├── PublishSubject.swift │ │ │ ├── Queue.swift │ │ │ ├── Range.swift │ │ │ ├── Reactive.swift │ │ │ ├── RecursiveLock.swift │ │ │ ├── RecursiveScheduler.swift │ │ │ ├── Reduce.swift │ │ │ ├── RefCount.swift │ │ │ ├── RefCountDisposable.swift │ │ │ ├── Repeat.swift │ │ │ ├── ReplaySubject.swift │ │ │ ├── RetryWhen.swift │ │ │ ├── Rx.swift │ │ │ ├── RxMutableBox.swift │ │ │ ├── Sample.swift │ │ │ ├── Scan.swift │ │ │ ├── ScheduledDisposable.swift │ │ │ ├── ScheduledItem.swift │ │ │ ├── ScheduledItemType.swift │ │ │ ├── SchedulerServices+Emulation.swift │ │ │ ├── SchedulerType.swift │ │ │ ├── Sequence.swift │ │ │ ├── SerialDispatchQueueScheduler.swift │ │ │ ├── SerialDisposable.swift │ │ │ ├── ShareReplay1.swift │ │ │ ├── ShareReplay1WhileConnected.swift │ │ │ ├── SingleAssignmentDisposable.swift │ │ │ ├── SingleAsync.swift │ │ │ ├── Sink.swift │ │ │ ├── Skip.swift │ │ │ ├── SkipUntil.swift │ │ │ ├── SkipWhile.swift │ │ │ ├── StartWith.swift │ │ │ ├── String+Rx.swift │ │ │ ├── SubjectType.swift │ │ │ ├── SubscribeOn.swift │ │ │ ├── SubscriptionDisposable.swift │ │ │ ├── Switch.swift │ │ │ ├── SwitchIfEmpty.swift │ │ │ ├── SynchronizedDisposeType.swift │ │ │ ├── SynchronizedOnType.swift │ │ │ ├── SynchronizedSubscribeType.swift │ │ │ ├── SynchronizedUnsubscribeType.swift │ │ │ ├── TailRecursiveSink.swift │ │ │ ├── Take.swift │ │ │ ├── TakeLast.swift │ │ │ ├── TakeUntil.swift │ │ │ ├── TakeWhile.swift │ │ │ ├── Throttle.swift │ │ │ ├── Timeout.swift │ │ │ ├── Timer.swift │ │ │ ├── ToArray.swift │ │ │ ├── Using.swift │ │ │ ├── Variable.swift │ │ │ ├── VirtualTimeConverterType.swift │ │ │ ├── VirtualTimeScheduler.swift │ │ │ ├── Window.swift │ │ │ ├── WithLatestFrom.swift │ │ │ ├── Zip+Collection.swift │ │ │ ├── Zip+arity.swift │ │ │ └── Zip.swift │ │ └── RxTest │ │ │ ├── Any+Equatable.swift │ │ │ ├── Bag.swift │ │ │ ├── ColdObservable.swift │ │ │ ├── Event+Equatable.swift │ │ │ ├── HotObservable.swift │ │ │ ├── Recorded.swift │ │ │ ├── RxTests.swift │ │ │ ├── Subscription.swift │ │ │ ├── TestScheduler.swift │ │ │ ├── TestSchedulerVirtualTimeConverter.swift │ │ │ ├── TestableObservable.swift │ │ │ ├── TestableObserver.swift │ │ │ └── XCTest+Rx.swift │ │ ├── Tests │ │ ├── Benchmarks │ │ │ ├── Benchmarks.swift │ │ │ └── Info.plist │ │ ├── Info.plist │ │ ├── MessageProcessingStage.swift │ │ ├── Microoptimizations │ │ │ ├── Info.plist │ │ │ ├── PerformanceTools.swift │ │ │ └── main.swift │ │ ├── Platform │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── Recorded+Timeless.swift │ │ ├── Resources.swift │ │ ├── RxBlockingTests │ │ │ └── Observable+BlockingTest.swift │ │ ├── RxCocoaTests │ │ │ ├── Control+RxTests+Cocoa.swift │ │ │ ├── Control+RxTests+UIKit.swift │ │ │ ├── Control+RxTests.swift │ │ │ ├── ControlEventTests.swift │ │ │ ├── ControlPropertyTests.swift │ │ │ ├── DelegateProxyTest+Cocoa.swift │ │ │ ├── DelegateProxyTest+UIKit.swift │ │ │ ├── DelegateProxyTest.swift │ │ │ ├── Driver+Extensions.swift │ │ │ ├── Driver+Test.swift │ │ │ ├── ExampleTests.swift │ │ │ ├── KVOObservableTests.swift │ │ │ ├── NSButton+RxTests.swift │ │ │ ├── NSControl+RxTests.swift │ │ │ ├── NSLayoutConstraint+RxTests.swift │ │ │ ├── NSObject+RxTests.swift │ │ │ ├── NSSlider+RxTests.swift │ │ │ ├── NSTextField+RxTests.swift │ │ │ ├── NSView+RxTests.swift │ │ │ ├── NotificationCenterTests.swift │ │ │ ├── Observable+BindTests.swift │ │ │ ├── RXObjCRuntime+Testing.h │ │ │ ├── RXObjCRuntime+Testing.m │ │ │ ├── RuntimeStateSnapshot.swift │ │ │ ├── RxObjCRuntimeState.swift │ │ │ ├── RxTest+Controls.swift │ │ │ ├── RxTest-iOS-Bridging-Header.h │ │ │ ├── RxTest-macOS-Bridging-Header.h │ │ │ ├── RxTest-tvOS-Bridging-Header.h │ │ │ ├── SentMessageTest.swift │ │ │ ├── TestImplementations │ │ │ │ └── SectionedViewDataSourceMock.swift │ │ │ ├── UIActivityIndicatorView+RxTests.swift │ │ │ ├── UIAlertAction+RxTests.swift │ │ │ ├── UIBarButtonItem+RxTests.swift │ │ │ ├── UIBindingObserver+Tests.swift │ │ │ ├── UIButton+RxTests.swift │ │ │ ├── UICollectionView+RxTests.swift │ │ │ ├── UIDatePicker+RxTests.swift │ │ │ ├── UIGestureRecognizer+RxTests.swift │ │ │ ├── UILabel+RxTests.swift │ │ │ ├── UINavigationItem+RxTests.swift.swift │ │ │ ├── UIPageControl+RxTest.swift │ │ │ ├── UIPickerView+RxTests.swift │ │ │ ├── UIProgressView+RxTests.swift │ │ │ ├── UIRefreshControl+RxTests.swift │ │ │ ├── UIScrollView+RxTests.swift │ │ │ ├── UISearchBar+RxTests.swift │ │ │ ├── UISearchController+RxTests.swift │ │ │ ├── UISegmentedControl+RxTests.swift │ │ │ ├── UISlider+RxTests.swift │ │ │ ├── UIStepper+RxTests.swift │ │ │ ├── UISwitch+RxTests.swift │ │ │ ├── UITabBar+RxTests.swift │ │ │ ├── UITabBarController+RxTests.swift │ │ │ ├── UITabBarItem+RxTests.swift │ │ │ ├── UITableView+RxTests.swift │ │ │ ├── UITextField+RxTests.swift │ │ │ ├── UITextView+RxTests.swift │ │ │ ├── UIView+RxTests.swift │ │ │ ├── UIViewControler+RxTests.swift │ │ │ └── UIWebView+RxTests.swift │ │ ├── RxSwiftTests │ │ │ ├── Anomalies.swift │ │ │ ├── AnonymousObservable+Test.swift │ │ │ ├── AssumptionsTest.swift │ │ │ ├── AsyncSubjectTests.swift │ │ │ ├── BagTest.swift │ │ │ ├── BehaviorSubjectTest.swift │ │ │ ├── CurrentThreadSchedulerTest.swift │ │ │ ├── DisposableTest.swift │ │ │ ├── Event+Test.swift │ │ │ ├── HistoricalSchedulerTest.swift │ │ │ ├── MainSchedulerTests.swift │ │ │ ├── Observable+AggregateTest.swift │ │ │ ├── Observable+BindingTest.swift │ │ │ ├── Observable+ConcurrencyTest.swift │ │ │ ├── Observable+CreationTest.swift │ │ │ ├── Observable+DebugTest.swift │ │ │ ├── Observable+MultipleTest+CombineLatest+Fixed.swift │ │ │ ├── Observable+MultipleTest+CombineLatest.swift │ │ │ ├── Observable+MultipleTest+CombineLatest.tt │ │ │ ├── Observable+MultipleTest+Zip+Fixed.swift │ │ │ ├── Observable+MultipleTest+Zip.swift │ │ │ ├── Observable+MultipleTest+Zip.tt │ │ │ ├── Observable+MultipleTest.swift │ │ │ ├── Observable+MultipleTest2.swift │ │ │ ├── Observable+MultipleTest3.swift │ │ │ ├── Observable+SingleTest.swift │ │ │ ├── Observable+StandardSequenceOperatorsTest.swift │ │ │ ├── Observable+StandardSequenceOperatorsTest2.swift │ │ │ ├── Observable+SubscriptionTest.swift │ │ │ ├── Observable+TimeTest.swift │ │ │ ├── ObserverTests.swift │ │ │ ├── PrimitiveSequenceTest+zip+arity.swift │ │ │ ├── PrimitiveSequenceTest+zip+arity.tt │ │ │ ├── PrimitiveSequenceTest.swift │ │ │ ├── PublishSubjectTest.swift │ │ │ ├── QueueTests.swift │ │ │ ├── Reactive+Tests.swift │ │ │ ├── RecursiveLockTest.swift │ │ │ ├── ReplaySubjectTest.swift │ │ │ ├── SchedulerTests.swift │ │ │ ├── SubjectConcurrencyTest.swift │ │ │ ├── TestImplementations │ │ │ │ ├── ElementIndexPair.swift │ │ │ │ ├── EquatableArray.swift │ │ │ │ ├── Mocks │ │ │ │ │ ├── BackgroundThreadPrimitiveHotObservable.swift │ │ │ │ │ ├── MainThreadPrimitiveHotObservable.swift │ │ │ │ │ ├── MockDisposable.swift │ │ │ │ │ ├── MySubject.swift │ │ │ │ │ ├── Observable.Extensions.swift │ │ │ │ │ ├── PrimitiveHotObservable.swift │ │ │ │ │ ├── PrimitiveMockObserver.swift │ │ │ │ │ └── TestConnectableObservable.swift │ │ │ │ ├── Observable+Extensions.swift │ │ │ │ └── TestVirtualScheduler.swift │ │ │ ├── VariableTest.swift │ │ │ └── VirtualSchedulerTest.swift │ │ ├── RxTest.swift │ │ ├── TestErrors.swift │ │ └── XCTest+AllTests.swift │ │ ├── assets │ │ ├── CNAME.txt │ │ ├── LICENSE.txt │ │ └── Rx_Logo_M.png │ │ └── scripts │ │ ├── all-tests.sh │ │ ├── common.sh │ │ ├── package-spm.swift │ │ ├── profile-build-times.sh │ │ ├── test-linux.sh │ │ ├── update-jazzy-config.rb │ │ ├── update-jazzy-docs.sh │ │ ├── validate-headers.swift │ │ ├── validate-markdown.sh │ │ ├── validate-playgrounds.sh │ │ └── validate-podspec.sh ├── RxSwfit+3.3.0.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── RxSwfit+3.3.0 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── RxSwfit+3.3.0Tests │ ├── Info.plist │ └── RxSwfit_3_3_0Tests.swift └── RxSwfit+3.3.0UITests │ ├── Info.plist │ └── RxSwfit_3_3_0UITests.swift ├── RxSwift+PostViewModel ├── Cartfile ├── Cartfile.resolved ├── RxSwift+PostViewModel.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── RxSwift+PostViewModel │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Camera.imageset │ │ │ ├── Camera.pdf │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Category.swift │ ├── CategoryListViewController.swift │ ├── CategoryListViewModel.swift │ ├── Info.plist │ ├── Post.swift │ ├── PostService.swift │ ├── PostViewController.swift │ ├── PostViewModel.swift │ ├── Session+Rx.swift │ └── String+Ex.swift └── RxSwift勉強会.pdf ├── Swifty Students vol3 ├── SwiftyStudents + 君の名は Starter │ ├── YourName.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── YourName │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Calender.swift │ │ ├── EditViewController.swift │ │ ├── Info.plist │ │ ├── ListTableViewController.swift │ │ ├── ListViewCell.swift │ │ └── UserDefaultsManager.swift └── SwiftyStudents + 君の名は │ ├── YourName.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── YourName │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Calender.swift │ ├── EditViewController.swift │ ├── Info.plist │ ├── ListTableViewController.swift │ ├── ListViewCell.swift │ └── UserDefaultsManager.swift └── SwiftyStudents+API ├── Cartfile ├── Cartfile.resolved ├── SwiftyStudents+API.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── SwiftyStudents+API ├── APIManager.swift ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── GithubService.swift ├── Info.plist ├── JSONObject.swift ├── Owner.swift ├── Reposirory.swift ├── RepositoryListViewController.swift ├── RepositoryViewCell.swift ├── RoundedImageView.swift ├── SwiftyStudentsRequest.swift ├── UIImageView+Extension.swift ├── URL+Decodable.swift └── User.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" ~> 3.3.1 2 | -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" "3.3.1" 2 | -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.gitignore -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.jazzy.yml -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/.travis.yml -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/CHANGELOG.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/CONTRIBUTING.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Dangerfile -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/ComparisonWithOtherLibraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/ComparisonWithOtherLibraries.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/DesignRationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/DesignRationale.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/ExampleApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/ExampleApp.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Examples.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/GettingStarted.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/HotAndColdObservables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/HotAndColdObservables.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Linux.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/MathBehindRx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/MathBehindRx.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Migration.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/NewFeatureRequestTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/NewFeatureRequestTemplate.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Playgrounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Playgrounds.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Schedulers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Schedulers.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Subjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Subjects.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Tips.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/UnitTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/UnitTests.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Units.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Warnings.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Documentation/Why.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'danger' 4 | -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Gemfile.lock -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Package.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Preprocessor/Preprocessor/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Preprocessor/Preprocessor/main.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Preprocessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Preprocessor/README.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/README.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.playground/Sources/SupportCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.playground/Sources/SupportCode.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.playground/SupportCode.remap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.playground/SupportCode.remap -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.playground/contents.xcplayground -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Rx.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking.podspec -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/BlockingObservable+Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/BlockingObservable+Operators.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/BlockingObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/BlockingObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/README.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/Resources.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/RunLoopLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxBlocking/RunLoopLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa.podspec -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/ControlEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/ControlEvent.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/ControlProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/ControlProperty.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/Driver/Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/Driver/Driver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/UIBindingObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/CocoaUnits/UIBindingObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/ControlTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/ControlTarget.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/DelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/DelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/DelegateProxyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/DelegateProxyType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/NSLayoutConstraint+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/NSLayoutConstraint+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/Observable+Bind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/Observable+Bind.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/RxTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/RxTarget.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/TextInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Common/TextInput.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/KVORepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/KVORepresentable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/Logging.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/NSObject+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/NSObject+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/NotificationCenter+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/NotificationCenter+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/URLSession+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Foundation/URLSession+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RX.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RXDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RXDelegateProxy.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RXKVOObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RXKVOObserver.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RXObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/_RXObjCRuntime.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/RxCocoaRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/RxCocoaRuntime.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RX.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RXDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RXDelegateProxy.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RXKVOObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RXKVOObserver.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RXObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/Runtime/include/_RXObjCRuntime.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/RxCocoa.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/RxCocoa.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/RxCocoa.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/Events/ItemEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/Events/ItemEvents.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/NSTextStorage+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/NSTextStorage+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIAlertAction+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIAlertAction+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIApplication+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIApplication+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIBarButtonItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIBarButtonItem+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIButton+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIButton+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UICollectionView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UICollectionView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIDatePicker+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIDatePicker+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIGestureRecognizer+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIGestureRecognizer+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIImageView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIImageView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UILabel+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UILabel+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UINavigationItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UINavigationItem+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIPageControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIPageControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIPickerView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIPickerView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIProgressView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIProgressView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIRefreshControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIRefreshControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIScrollView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIScrollView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISearchBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISearchBar+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISearchController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISearchController+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISegmentedControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISegmentedControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISlider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISlider+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIStepper+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIStepper+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISwitch+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UISwitch+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITabBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITabBar+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITabBarController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITabBarController+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITabBarItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITabBarItem+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITableView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITableView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITextField+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITextField+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITextView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UITextView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIViewController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIViewController+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIWebView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/iOS/UIWebView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSButton+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSButton+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSImageView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSImageView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSSlider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSSlider+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSTextField+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSTextField+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxCocoa/macOS/NSView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxDataSources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxDataSources/README.md -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSTests/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSTests/RxTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSTests/RxTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSUITests/FlowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSUITests/FlowTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-iOSUITests/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-macOSUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample-macOSUITests/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Example.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Info-iOS.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Info-macOS.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Operators.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Services/HtmlParsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Services/HtmlParsing.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Services/Randomizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Services/Randomizer.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Services/Wireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/Services/Wireframe.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/String+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/String+URL.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/ViewController.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/iOS/AppDelegate.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/iOS/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/iOS/LaunchScreen.xib -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/iOS/Main.storyboard -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/macOS/AppDelegate.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/macOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxExample/RxExample/macOS/Main.storyboard -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift.podspec -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Deprecated.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/BooleanDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/BooleanDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/CompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/Disposables.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/RefCountDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/RefCountDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/GroupedObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/GroupedObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Amb.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Do.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Just.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Map.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Scan.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Sink.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Skip.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Take.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Implementations/Zip.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Aggregate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Aggregate.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Binding.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Creation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Creation.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Debug.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Multiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Multiple.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Single.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Time.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observables/Observable+Time.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observers/AnonymousObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- 1 | ../../../Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- 1 | ../../../Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- 1 | ../../../Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- 1 | ../../../Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Reactive.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/AsyncSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/AsyncSubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Subjects/Variable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Units/PrimitiveSequence+Zip+arity.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Units/PrimitiveSequence+Zip+arity.tt -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Units/PrimitiveSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxSwift/Units/PrimitiveSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest.podspec -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Any+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Any+Equatable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/ColdObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/ColdObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Event+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Event+Equatable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/HotObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/HotObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- 1 | ../../../Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Recorded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Recorded.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Schedulers/TestScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Schedulers/TestScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/Subscription.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/TestableObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/TestableObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/TestableObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/TestableObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/XCTest+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/RxTest/XCTest+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Anomalies.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Anomalies.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/AnonymousObservable+Test.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/AnonymousObservable+Test.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/AssumptionsTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/AssumptionsTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/AsyncSubjectTests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/AsyncSubjectTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/BackgroundThreadPrimitiveHotObservable.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/BackgroundThreadPrimitiveHotObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Bag.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/BehaviorSubjectTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/BehaviorSubjectTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/CurrentThreadSchedulerTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/CurrentThreadSchedulerTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/DisposableTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/DisposableTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Driver+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxCocoaTests/Driver+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Driver+Test.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxCocoaTests/Driver+Test.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/ElementIndexPair.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/ElementIndexPair.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/EquatableArray.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/EquatableArray.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Event+Test.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Event+Test.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/HistoricalSchedulerTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/HistoricalSchedulerTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/InfiniteSequence.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/MainSchedulerTests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/MainSchedulerTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/MainThreadPrimitiveHotObservable.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/MainThreadPrimitiveHotObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/MockDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/MockDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/MySubject.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/MySubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/NotificationCenterTests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxCocoaTests/NotificationCenterTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+AggregateTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+AggregateTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+BindingTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+BindingTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+BlockingTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxBlockingTests/Observable+BlockingTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+ConcurrencyTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+ConcurrencyTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+CreationTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+CreationTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+DebugTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+DebugTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Observable+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+MultipleTest+CombineLatest+Fixed.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+MultipleTest+CombineLatest+Fixed.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+MultipleTest+CombineLatest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+MultipleTest+CombineLatest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+MultipleTest+Zip+Fixed.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+MultipleTest+Zip+Fixed.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+MultipleTest+Zip.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+MultipleTest+Zip.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+MultipleTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+MultipleTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+MultipleTest2.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+MultipleTest2.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+MultipleTest3.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+MultipleTest3.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+SingleTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+SingleTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+StandardSequenceOperatorsTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+StandardSequenceOperatorsTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+StandardSequenceOperatorsTest2.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+StandardSequenceOperatorsTest2.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+SubscriptionTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+SubscriptionTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable+TimeTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Observable+TimeTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Observable.Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/Observable.Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/ObserverTests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/ObserverTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Platform.Darwin.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Platform.Linux.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/PrimitiveHotObservable.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/PrimitiveHotObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/PrimitiveMockObserver.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/PrimitiveMockObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/PrimitiveSequenceTest+zip+arity.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/PrimitiveSequenceTest+zip+arity.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/PrimitiveSequenceTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/PrimitiveSequenceTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/PriorityQueue.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/PublishSubjectTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/PublishSubjectTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Queue.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/QueueTests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/QueueTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Reactive+Tests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/Reactive+Tests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/Recorded+Timeless.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/Recorded+Timeless.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/RecursiveLock.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/RecursiveLockTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/RecursiveLockTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/ReplaySubjectTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/ReplaySubjectTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/RxMutableBox.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/RxTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/SchedulerTests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/SchedulerTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/SubjectConcurrencyTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/SubjectConcurrencyTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/TestConnectableObservable.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/Mocks/TestConnectableObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/TestErrors.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/TestErrors.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/TestVirtualScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/TestImplementations/TestVirtualScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/VariableTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/VariableTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/VirtualSchedulerTest.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/RxSwiftTests/VirtualSchedulerTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/XCTest+AllTests.swift: -------------------------------------------------------------------------------- 1 | ../../Tests/XCTest+AllTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/AllTestz/main.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/BlockingObservable+Operators.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/BlockingObservable+Operators.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/BlockingObservable.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/BlockingObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/ObservableConvertibleType+Blocking.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/ObservableConvertibleType+Blocking.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/Platform.Darwin.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/Platform.Linux.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/RecursiveLock.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/Resources.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/Resources.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxBlocking/RunLoopLock.swift: -------------------------------------------------------------------------------- 1 | ../../RxBlocking/RunLoopLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ControlEvent+Driver.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/Driver/ControlEvent+Driver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ControlEvent.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/ControlEvent.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ControlProperty+Driver.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/Driver/ControlProperty+Driver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ControlProperty.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/ControlProperty.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ControlTarget.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/ControlTarget.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/DelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/DelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/DelegateProxyType.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/DelegateProxyType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/Driver+Subscription.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/Driver/Driver+Subscription.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/Driver.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/Driver/Driver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ItemEvents.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Events/ItemEvents.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/KVORepresentable+CoreGraphics.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/KVORepresentable+Swift.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/KVORepresentable+Swift.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/KVORepresentable.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/KVORepresentable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/Logging.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/Logging.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSButton+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/macOS/NSButton+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSControl+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/macOS/NSControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSImageView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/macOS/NSImageView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSLayoutConstraint+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/NSLayoutConstraint+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSObject+Rx+KVORepresentable.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSObject+Rx+RawRepresentable.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSObject+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/NSObject+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSSlider+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/macOS/NSSlider+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSTextField+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/macOS/NSTextField+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSTextStorage+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/NSTextStorage+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NSView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/macOS/NSView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/NotificationCenter+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/NotificationCenter+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/Observable+Bind.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/Observable+Bind.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ObservableConvertibleType+Driver.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/Driver/ObservableConvertibleType+Driver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/ObservableConvertibleType+SharedSequence.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/SharedSequence/ObservableConvertibleType+SharedSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxCocoa.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/RxCocoa.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxCocoaObjCRuntimeError+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxCollectionViewDataSourceProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxCollectionViewDataSourceType.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxCollectionViewDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxCollectionViewReactiveArrayDataSource.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxPickerViewDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxScrollViewDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxSearchBarDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxSearchControllerDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTabBarControllerDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTabBarDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTableViewDataSourceProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTableViewDataSourceType.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTableViewDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTableViewReactiveArrayDataSource.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTarget.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/RxTarget.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTextStorageDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxTextViewDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/RxWebViewDelegateProxy.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/Proxies/RxWebViewDelegateProxy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/SectionedViewDataSourceType.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/SectionedViewDataSourceType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/SharedSequence+Operators+arity.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/SharedSequence/SharedSequence+Operators+arity.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/SharedSequence+Operators.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/SharedSequence/SharedSequence+Operators.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/SharedSequence.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/SharedSequence/SharedSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/TextInput.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Common/TextInput.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIActivityIndicatorView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIActivityIndicatorView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIAlertAction+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIAlertAction+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIApplication+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIApplication+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIBarButtonItem+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIBarButtonItem+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIBindingObserver.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/UIBindingObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIButton+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIButton+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UICollectionView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UICollectionView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIControl+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIDatePicker+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIDatePicker+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIGestureRecognizer+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIGestureRecognizer+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIImageView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIImageView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UILabel+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UILabel+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UINavigationItem+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UINavigationItem+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIPageControl+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIPageControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIPickerView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIPickerView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIProgressView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIProgressView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIRefreshControl+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIRefreshControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIScrollView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIScrollView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UISearchBar+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UISearchBar+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UISearchController+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UISearchController+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UISegmentedControl+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UISegmentedControl+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UISlider+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UISlider+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIStepper+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIStepper+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UISwitch+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UISwitch+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UITabBar+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UITabBar+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UITabBarController+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UITabBarController+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UITabBarItem+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UITabBarItem+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UITableView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UITableView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UITextField+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UITextField+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UITextView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UITextView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIViewController+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIViewController+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/UIWebView+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/iOS/UIWebView+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/URLSession+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Foundation/URLSession+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/Variable+Driver.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/Driver/Variable+Driver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoa/Variable+SharedSequence.swift: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/CocoaUnits/SharedSequence/Variable+SharedSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoaRuntime/_RX.m: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Runtime/_RX.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoaRuntime/_RXDelegateProxy.m: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Runtime/_RXDelegateProxy.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoaRuntime/_RXKVOObserver.m: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Runtime/_RXKVOObserver.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoaRuntime/_RXObjCRuntime.m: -------------------------------------------------------------------------------- 1 | ../../RxCocoa/Runtime/_RXObjCRuntime.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoaRuntime/include/_RX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxCocoaRuntime/include/_RX.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AddRef.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/AddRef.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Amb.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Amb.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AnonymousDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AnonymousInvocable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/Internal/AnonymousInvocable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AnonymousObservable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/AnonymousObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AnonymousObserver.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AsMaybe.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/AsMaybe.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AsSingle.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/AsSingle.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AsyncLock.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/AsyncSubject.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Subjects/AsyncSubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Bag+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Bag.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/BehaviorSubject.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/BinaryDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/BooleanDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/BooleanDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Buffer.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Buffer.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Catch.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Catch.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/CombineLatest+Collection.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/CombineLatest+Collection.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/CombineLatest+arity.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/CombineLatest+arity.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/CombineLatest.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/CombineLatest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/CompositeDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Concat.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Concat.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ConcurrentMainScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/ConcurrentMainScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ConnectableObservable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/ConnectableObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/CurrentThreadScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Debounce.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Debounce.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Debug.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Debug.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/DefaultIfEmpty.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/DefaultIfEmpty.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Deferred.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Deferred.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Delay.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Delay.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/DelaySubscription.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/DelaySubscription.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Deprecated.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Deprecated.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/DispatchQueueConfiguration.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Disposables.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/Disposables.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/DisposeBag.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/DisposeBase.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/DistinctUntilChanged.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/DistinctUntilChanged.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Do.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Do.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ElementAt.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/ElementAt.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Empty.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Empty.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Error.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Error.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Errors.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Errors.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Event.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Event.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Filter.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Filter.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Generate.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Generate.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/GroupBy.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/GroupBy.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/GroupedObservable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/GroupedObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/HistoricalScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/HistoricalScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/HistoricalSchedulerTimeConverter.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ImmediateScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/ImmediateScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/InfiniteSequence.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/Internal/InvocableScheduledItem.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/InvocableType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/Internal/InvocableType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Just.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Just.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Lock.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/LockOwnerType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/MainScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Map.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Map.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Merge.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Merge.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Multicast.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Multicast.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Never.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Never.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/NopDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Aggregate.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Aggregate.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Binding.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Binding.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Concurrency.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Concurrency.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Creation.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Creation.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Debug.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Debug.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Multiple.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Multiple.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Single.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Single.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+StandardSequenceOperators.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+StandardSequenceOperators.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable+Time.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Observable+Time.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Observable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ObserveOn.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/ObserveOn.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ObserveOnSerialDispatchQueue.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ObserverBase.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/OperationQueueScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/OperationQueueScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Optional.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Optional.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Platform.Darwin.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Platform.Linux.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/PrimitiveSequence+Zip+arity.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Units/PrimitiveSequence+Zip+arity.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/PrimitiveSequence.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Units/PrimitiveSequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/PriorityQueue.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Producer.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Producer.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/PublishSubject.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Queue.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Range.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Range.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Reactive.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/RecursiveLock.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/RecursiveScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Reduce.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Reduce.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/RefCount.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/RefCount.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/RefCountDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/RefCountDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Repeat.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Repeat.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ReplaySubject.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/RetryWhen.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/RetryWhen.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Sample.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Sample.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Scan.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Scan.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ScheduledDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ScheduledItem.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/Internal/ScheduledItem.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ScheduledItemType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/Internal/ScheduledItemType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SchedulerServices+Emulation.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/SchedulerServices+Emulation.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Sequence.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Sequence.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SerialDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/SerialDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SerialDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ShareReplay1.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/ShareReplay1.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ShareReplay1WhileConnected.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SingleAssignmentDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/SingleAssignmentDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SingleAsync.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/SingleAsync.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Sink.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Sink.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Skip.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Skip.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SkipUntil.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/SkipUntil.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SkipWhile.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/SkipWhile.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/StartWith.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/StartWith.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/String+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SubjectType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SubscribeOn.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/SubscribeOn.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Disposables/SubscriptionDisposable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Switch.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Switch.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SwitchIfEmpty.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/SwitchIfEmpty.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Concurrency/SynchronizedDisposeType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SynchronizedOnType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SynchronizedSubscribeType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Concurrency/SynchronizedSubscribeType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Concurrency/SynchronizedUnsubscribeType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/TailRecursiveSink.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Take.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Take.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/TakeLast.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/TakeLast.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/TakeUntil.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/TakeUntil.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/TakeWhile.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/TakeWhile.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Throttle.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Throttle.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Timeout.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Timeout.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Timer.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Timer.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/ToArray.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/ToArray.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Using.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Using.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Variable.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Subjects/Variable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/VirtualTimeConverterType.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/VirtualTimeConverterType.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/VirtualTimeScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Schedulers/VirtualTimeScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Window.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Window.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/WithLatestFrom.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/WithLatestFrom.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Zip+Collection.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Zip+Collection.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Zip+arity.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Zip+arity.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxSwift/Zip.swift: -------------------------------------------------------------------------------- 1 | ../../RxSwift/Observables/Implementations/Zip.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/Any+Equatable.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/Any+Equatable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/Bag.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/ColdObservable.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/ColdObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/Event+Equatable.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/Event+Equatable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/HotObservable.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/HotObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/Recorded.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/Recorded.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/RxTests.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/Subscription.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/Subscription.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/TestScheduler.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/Schedulers/TestScheduler.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/TestSchedulerVirtualTimeConverter.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/Schedulers/TestSchedulerVirtualTimeConverter.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/TestableObservable.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/TestableObservable.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/TestableObserver.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/TestableObserver.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Sources/RxTest/XCTest+Rx.swift: -------------------------------------------------------------------------------- 1 | ../../RxTest/XCTest+Rx.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Benchmarks/Benchmarks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Benchmarks/Benchmarks.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Benchmarks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Benchmarks/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/MessageProcessingStage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/MessageProcessingStage.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Microoptimizations/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Microoptimizations/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Microoptimizations/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Microoptimizations/main.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- 1 | ../../Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Recorded+Timeless.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Recorded+Timeless.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/Resources.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Control+RxTests+Cocoa.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Control+RxTests+Cocoa.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Control+RxTests+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Control+RxTests+UIKit.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Control+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Control+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/ControlEventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/ControlEventTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/ControlPropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/ControlPropertyTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/DelegateProxyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/DelegateProxyTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Driver+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Driver+Extensions.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Driver+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Driver+Test.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/ExampleTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/KVOObservableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/KVOObservableTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSButton+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSButton+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSControl+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSControl+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSObject+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSObject+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSSlider+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSSlider+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSTextField+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSTextField+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSView+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/NSView+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Observable+BindTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/Observable+BindTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RXObjCRuntime+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RXObjCRuntime+Testing.h -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RXObjCRuntime+Testing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RXObjCRuntime+Testing.m -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RuntimeStateSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RuntimeStateSnapshot.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RxObjCRuntimeState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RxObjCRuntimeState.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RxTest+Controls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/RxTest+Controls.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/SentMessageTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/SentMessageTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIAlertAction+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIAlertAction+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIButton+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIButton+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIDatePicker+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIDatePicker+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UILabel+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UILabel+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIPageControl+RxTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIPageControl+RxTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIPickerView+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIPickerView+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIScrollView+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIScrollView+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UISearchBar+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UISearchBar+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UISlider+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UISlider+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIStepper+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIStepper+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UISwitch+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UISwitch+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITabBar+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITabBar+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITabBarItem+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITabBarItem+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITableView+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITableView+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITextField+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITextField+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITextView+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UITextView+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIView+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIView+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIWebView+RxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxCocoaTests/UIWebView+RxTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Anomalies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Anomalies.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/AssumptionsTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/AssumptionsTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/AsyncSubjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/AsyncSubjectTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/BagTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/BagTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/BehaviorSubjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/BehaviorSubjectTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/DisposableTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/DisposableTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Event+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Event+Test.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/MainSchedulerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/MainSchedulerTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Observable+DebugTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Observable+DebugTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Observable+SingleTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Observable+SingleTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Observable+TimeTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Observable+TimeTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/ObserverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/ObserverTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/PrimitiveSequenceTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/PrimitiveSequenceTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/PublishSubjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/PublishSubjectTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/QueueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/QueueTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Reactive+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/Reactive+Tests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/RecursiveLockTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/RecursiveLockTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/ReplaySubjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/ReplaySubjectTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/SchedulerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/SchedulerTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/VariableTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/VariableTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/VirtualSchedulerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxSwiftTests/VirtualSchedulerTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/RxTest.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/TestErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/TestErrors.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/XCTest+AllTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/Tests/XCTest+AllTests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/assets/CNAME.txt: -------------------------------------------------------------------------------- 1 | reactivex.io 2 | -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/assets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/assets/LICENSE.txt -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/assets/Rx_Logo_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/assets/Rx_Logo_M.png -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/all-tests.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/common.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/package-spm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/package-spm.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/profile-build-times.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/profile-build-times.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/test-linux.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/update-jazzy-config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/update-jazzy-config.rb -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/update-jazzy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/update-jazzy-docs.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-headers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-headers.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-markdown.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-playgrounds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-playgrounds.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-podspec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/Carthage/Checkouts/RxSwift/scripts/validate-podspec.sh -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0/AppDelegate.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0/ViewController.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0Tests/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0Tests/RxSwfit_3_3_0Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0Tests/RxSwfit_3_3_0Tests.swift -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0UITests/Info.plist -------------------------------------------------------------------------------- /RxSwfit+3.3.0/RxSwfit+3.3.0UITests/RxSwfit_3_3_0UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwfit+3.3.0/RxSwfit+3.3.0UITests/RxSwfit_3_3_0UITests.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/Cartfile -------------------------------------------------------------------------------- /RxSwift+PostViewModel/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/Cartfile.resolved -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/AppDelegate.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/Category.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/CategoryListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/CategoryListViewController.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/CategoryListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/CategoryListViewModel.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/Info.plist -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/Post.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/PostService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/PostService.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/PostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/PostViewController.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/PostViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/PostViewModel.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/Session+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/Session+Rx.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift+PostViewModel/String+Ex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift+PostViewModel/String+Ex.swift -------------------------------------------------------------------------------- /RxSwift+PostViewModel/RxSwift勉強会.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/RxSwift+PostViewModel/RxSwift勉強会.pdf -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/AppDelegate.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/Calender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/Calender.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/EditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/EditViewController.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/Info.plist -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/ListViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/ListViewCell.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/UserDefaultsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は Starter/YourName/UserDefaultsManager.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/AppDelegate.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/Calender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/Calender.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/EditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/EditViewController.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/Info.plist -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/ListTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/ListTableViewController.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/ListViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/ListViewCell.swift -------------------------------------------------------------------------------- /Swifty Students vol3/SwiftyStudents + 君の名は/YourName/UserDefaultsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/Swifty Students vol3/SwiftyStudents + 君の名は/YourName/UserDefaultsManager.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/Cartfile -------------------------------------------------------------------------------- /SwiftyStudents+API/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/Cartfile.resolved -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/APIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/APIManager.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/GithubService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/GithubService.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/Info.plist -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/JSONObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/JSONObject.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/Owner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/Owner.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/Reposirory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/Reposirory.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/RepositoryListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/RepositoryListViewController.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/RepositoryViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/RepositoryViewCell.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/RoundedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/RoundedImageView.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/SwiftyStudentsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/SwiftyStudentsRequest.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/UIImageView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/UIImageView+Extension.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/URL+Decodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/URL+Decodable.swift -------------------------------------------------------------------------------- /SwiftyStudents+API/SwiftyStudents+API/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzushioh/sandbox/HEAD/SwiftyStudents+API/SwiftyStudents+API/User.swift --------------------------------------------------------------------------------