├── .gitignore ├── .swift-version ├── Carthage ├── .gitignore ├── Carthage.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── EVReflection_CloudKit_MacOS.xcscheme │ │ ├── EVReflection_CloudKit_iOS.xcscheme │ │ ├── EVReflection_MacOS.xcscheme │ │ ├── EVReflection_TVOS.xcscheme │ │ ├── EVReflection_WatchOS.xcscheme │ │ └── EVReflection_iOS.xcscheme ├── EVReflectionCloudKitIOS │ ├── EVReflectionCloudKitIOS.h │ └── Info.plist ├── EVReflectionCloudKitMacOS │ ├── EVReflectionCloudKitMacOS.h │ └── Info.plist ├── EVReflectionIOS │ ├── EVReflection.h │ └── Info.plist ├── EVReflectionMacOS │ ├── EVReflectionMacOS.h │ └── Info.plist ├── EVReflectionTVOS │ ├── EVReflectionTVOS.h │ └── Info.plist ├── EVReflectionWatchOS │ ├── EVReflectionWatchOS.h │ └── Info.plist └── README.md ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ ├── dmitrijkulesov.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── eve21962.xcuserdatad │ │ └── xcschemes │ │ │ ├── Demo.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── evermeer.xcuserdatad │ │ └── xcschemes │ │ ├── Demo.xcscheme │ │ └── xcschememanagement.plist ├── Demo │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── BaseViewController.swift │ ├── GitHubUser.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Issue.swift │ ├── License.swift │ ├── MoyaGitHubAPI.swift │ ├── MoyaRxViewController.swift │ ├── MoyaViewController.swift │ ├── Owner.swift │ └── Repository.swift └── README.md ├── EVReflection.podspec ├── EVReflection.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── dmitrijkulesov.xcuserdatad │ └── UserInterfaceState.xcuserstate │ ├── eve21962.xcuserdatad │ ├── IDEFindNavigatorScopes.plist │ ├── UserInterfaceState.xcuserstate │ ├── WorkspaceSettings.xcsettings │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── evermeer.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PerformanceTest ├── .gitignore ├── PerformanceTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── PerformanceTest │ ├── AppDelegate.swift │ ├── ArrayDeserializationPerformanceTest.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── test.json └── README.md ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── Local Podspecs │ ├── EVReflection.podspec.json │ ├── Moya.podspec.json │ └── RxSwift.podspec.json ├── Manifest.lock ├── Moya │ ├── License.md │ ├── Readme.md │ └── Sources │ │ ├── Moya │ │ ├── AnyEncodable.swift │ │ ├── Cancellable.swift │ │ ├── Endpoint.swift │ │ ├── Image.swift │ │ ├── Moya+Alamofire.swift │ │ ├── MoyaError.swift │ │ ├── MoyaProvider+Defaults.swift │ │ ├── MoyaProvider+Internal.swift │ │ ├── MoyaProvider.swift │ │ ├── MultiTarget.swift │ │ ├── MultipartFormData.swift │ │ ├── Plugin.swift │ │ ├── Plugins │ │ │ ├── AccessTokenPlugin.swift │ │ │ ├── CredentialsPlugin.swift │ │ │ ├── NetworkActivityPlugin.swift │ │ │ └── NetworkLoggerPlugin.swift │ │ ├── Response.swift │ │ ├── TargetType.swift │ │ ├── Task.swift │ │ ├── URL+Moya.swift │ │ ├── URLRequest+Encoding.swift │ │ └── ValidationType.swift │ │ ├── ReactiveMoya │ │ ├── MoyaProvider+Reactive.swift │ │ └── SignalProducer+Response.swift │ │ └── RxMoya │ │ ├── MoyaProvider+Rx.swift │ │ ├── Observable+Response.swift │ │ └── Single+Response.swift ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── dmitrijkulesov.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── eve21962.xcuserdatad │ │ └── xcschemes │ │ │ ├── Alamofire-iOS.xcscheme │ │ │ ├── Alamofire-macOS.xcscheme │ │ │ ├── Alamofire-tvOS.xcscheme │ │ │ ├── EVReflection-0db607d1.xcscheme │ │ │ ├── EVReflection-18115d1d.xcscheme │ │ │ ├── EVReflection-Core.xcscheme │ │ │ ├── EVReflection-e20423af.xcscheme │ │ │ ├── Moya-iOS.xcscheme │ │ │ ├── Moya-macOS.xcscheme │ │ │ ├── Moya-tvOS.xcscheme │ │ │ ├── Pods-Demo.xcscheme │ │ │ ├── Pods-Performance.Test.xcscheme │ │ │ ├── Pods-UnitTestsOSX.xcscheme │ │ │ ├── Pods-UnitTestsTVOS.xcscheme │ │ │ ├── Pods-UnitTestsiOS.xcscheme │ │ │ ├── ReactiveSwift-iOS.xcscheme │ │ │ ├── ReactiveSwift-macOS.xcscheme │ │ │ ├── ReactiveSwift-tvOS.xcscheme │ │ │ ├── Realm-iOS.xcscheme │ │ │ ├── Realm-macOS.xcscheme │ │ │ ├── Realm-tvOS.xcscheme │ │ │ ├── RealmSwift-iOS.xcscheme │ │ │ ├── RealmSwift-macOS.xcscheme │ │ │ ├── RealmSwift-tvOS.xcscheme │ │ │ ├── Result-iOS.xcscheme │ │ │ ├── Result-macOS.xcscheme │ │ │ ├── Result-tvOS.xcscheme │ │ │ ├── RxSwift-iOS.xcscheme │ │ │ ├── RxSwift-macOS.xcscheme │ │ │ ├── RxSwift-tvOS.xcscheme │ │ │ ├── XMLDictionary-iOS.xcscheme │ │ │ ├── XMLDictionary-macOS.xcscheme │ │ │ ├── XMLDictionary-tvOS.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── evermeer.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire-iOS.xcscheme │ │ ├── Alamofire-macOS.xcscheme │ │ ├── Alamofire-tvOS.xcscheme │ │ ├── EVReflection-0db607d1.xcscheme │ │ ├── EVReflection-18115d1d.xcscheme │ │ ├── EVReflection-Core.xcscheme │ │ ├── EVReflection-e20423af.xcscheme │ │ ├── Moya-iOS.xcscheme │ │ ├── Moya-macOS.xcscheme │ │ ├── Moya-tvOS.xcscheme │ │ ├── Pods-44Demo5.xcscheme │ │ ├── Pods-Performance.Test.xcscheme │ │ ├── Pods-UnitTestsOSX.xcscheme │ │ ├── Pods-UnitTestsTVOS.xcscheme │ │ ├── Pods-UnitTestsiOS.xcscheme │ │ ├── ReactiveSwift-iOS.xcscheme │ │ ├── ReactiveSwift-macOS.xcscheme │ │ ├── ReactiveSwift-tvOS.xcscheme │ │ ├── Realm-iOS.xcscheme │ │ ├── Realm-macOS.xcscheme │ │ ├── Realm-tvOS.xcscheme │ │ ├── RealmSwift-iOS.xcscheme │ │ ├── RealmSwift-macOS.xcscheme │ │ ├── RealmSwift-tvOS.xcscheme │ │ ├── Result-iOS.xcscheme │ │ ├── Result-macOS.xcscheme │ │ ├── Result-tvOS.xcscheme │ │ ├── RxAtomic-iOS.xcscheme │ │ ├── RxAtomic-macOS.xcscheme │ │ ├── RxAtomic-tvOS.xcscheme │ │ ├── RxSwift-iOS.xcscheme │ │ ├── RxSwift-macOS.xcscheme │ │ ├── RxSwift-tvOS.xcscheme │ │ ├── XMLDictionary-iOS.xcscheme │ │ ├── XMLDictionary-macOS.xcscheme │ │ ├── XMLDictionary-tvOS.xcscheme │ │ └── xcschememanagement.plist ├── ReactiveSwift │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ ├── Action.swift │ │ ├── Atomic.swift │ │ ├── Bag.swift │ │ ├── Deprecations+Removals.swift │ │ ├── Disposable.swift │ │ ├── Event.swift │ │ ├── EventLogger.swift │ │ ├── Flatten.swift │ │ ├── FoundationExtensions.swift │ │ ├── Lifetime.swift │ │ ├── Observer.swift │ │ ├── Optional.swift │ │ ├── Property.swift │ │ ├── Reactive.swift │ │ ├── ResultExtensions.swift │ │ ├── Scheduler.swift │ │ ├── Signal.swift │ │ ├── SignalProducer.swift │ │ ├── UnidirectionalBinding.swift │ │ ├── UninhabitedTypeGuards.swift │ │ └── ValidatingProperty.swift ├── Realm │ ├── LICENSE │ ├── README.md │ ├── Realm │ │ ├── NSError+RLMSync.m │ │ ├── ObjectStore │ │ │ └── src │ │ │ │ ├── binding_callback_thread_observer.cpp │ │ │ │ ├── collection_notifications.cpp │ │ │ │ ├── impl │ │ │ │ ├── apple │ │ │ │ │ ├── external_commit_helper.cpp │ │ │ │ │ └── keychain_helper.cpp │ │ │ │ ├── collection_change_builder.cpp │ │ │ │ ├── collection_notifier.cpp │ │ │ │ ├── list_notifier.cpp │ │ │ │ ├── object_notifier.cpp │ │ │ │ ├── primitive_list_notifier.cpp │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ ├── results_notifier.cpp │ │ │ │ ├── transact_log_handler.cpp │ │ │ │ └── weak_realm_notifier.cpp │ │ │ │ ├── index_set.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── object.cpp │ │ │ │ ├── object_schema.cpp │ │ │ │ ├── object_store.cpp │ │ │ │ ├── placeholder.cpp │ │ │ │ ├── results.cpp │ │ │ │ ├── schema.cpp │ │ │ │ ├── shared_realm.cpp │ │ │ │ ├── sync │ │ │ │ ├── impl │ │ │ │ │ ├── apple │ │ │ │ │ │ ├── network_reachability_observer.cpp │ │ │ │ │ │ └── system_configuration.cpp │ │ │ │ │ ├── sync_file.cpp │ │ │ │ │ ├── sync_metadata.cpp │ │ │ │ │ └── work_queue.cpp │ │ │ │ ├── partial_sync.cpp │ │ │ │ ├── sync_config.cpp │ │ │ │ ├── sync_manager.cpp │ │ │ │ ├── sync_permission.cpp │ │ │ │ ├── sync_session.cpp │ │ │ │ └── sync_user.cpp │ │ │ │ ├── thread_safe_reference.cpp │ │ │ │ └── util │ │ │ │ └── uuid.cpp │ │ ├── RLMAccessor.mm │ │ ├── RLMAnalytics.mm │ │ ├── RLMArray.mm │ │ ├── RLMClassInfo.mm │ │ ├── RLMCollection.mm │ │ ├── RLMConstants.m │ │ ├── RLMJSONModels.m │ │ ├── RLMListBase.mm │ │ ├── RLMManagedArray.mm │ │ ├── RLMMigration.mm │ │ ├── RLMNetworkClient.mm │ │ ├── RLMObject.mm │ │ ├── RLMObjectBase.mm │ │ ├── RLMObjectSchema.mm │ │ ├── RLMObjectStore.mm │ │ ├── RLMObservation.mm │ │ ├── RLMOptionalBase.mm │ │ ├── RLMPredicateUtil.mm │ │ ├── RLMProperty.mm │ │ ├── RLMQueryUtil.mm │ │ ├── RLMRealm+Sync.mm │ │ ├── RLMRealm.mm │ │ ├── RLMRealmConfiguration+Sync.mm │ │ ├── RLMRealmConfiguration.mm │ │ ├── RLMRealmUtil.mm │ │ ├── RLMResults.mm │ │ ├── RLMSchema.mm │ │ ├── RLMSwiftSupport.m │ │ ├── RLMSyncConfiguration.mm │ │ ├── RLMSyncCredentials.m │ │ ├── RLMSyncManager.mm │ │ ├── RLMSyncPermission.mm │ │ ├── RLMSyncPermissionResults.mm │ │ ├── RLMSyncSession.mm │ │ ├── RLMSyncSessionRefreshHandle.mm │ │ ├── RLMSyncSubscription.mm │ │ ├── RLMSyncUser.mm │ │ ├── RLMSyncUtil.mm │ │ ├── RLMThreadSafeReference.mm │ │ ├── RLMUpdateChecker.mm │ │ ├── RLMUtil.mm │ │ └── Realm.modulemap │ ├── build.sh │ ├── core │ │ ├── librealmcore-ios.a │ │ ├── librealmcore-macosx.a │ │ └── librealmcore-tvos.a │ └── include │ │ ├── NSError+RLMSync.h │ │ ├── RLMAccessor.h │ │ ├── RLMAccessor.hpp │ │ ├── RLMAnalytics.hpp │ │ ├── RLMArray.h │ │ ├── RLMArray_Private.h │ │ ├── RLMArray_Private.hpp │ │ ├── RLMClassInfo.hpp │ │ ├── RLMCollection.h │ │ ├── RLMCollection_Private.h │ │ ├── RLMCollection_Private.hpp │ │ ├── RLMConstants.h │ │ ├── RLMJSONModels.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMMigration_Private.h │ │ ├── RLMNetworkClient.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectBase_Private.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMObjectSchema_Private.h │ │ ├── RLMObjectSchema_Private.hpp │ │ ├── RLMObjectStore.h │ │ ├── RLMObject_Private.h │ │ ├── RLMObject_Private.hpp │ │ ├── RLMObservation.hpp │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMPredicateUtil.hpp │ │ ├── RLMPrefix.h │ │ ├── RLMProperty.h │ │ ├── RLMProperty_Private.h │ │ ├── RLMProperty_Private.hpp │ │ ├── RLMQueryUtil.hpp │ │ ├── RLMRealm+Sync.h │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration+Sync.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealmConfiguration_Private.h │ │ ├── RLMRealmConfiguration_Private.hpp │ │ ├── RLMRealmUtil.hpp │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMRealm_Private.h │ │ ├── RLMRealm_Private.hpp │ │ ├── RLMResults.h │ │ ├── RLMResults_Private.h │ │ ├── RLMResults_Private.hpp │ │ ├── RLMSchema.h │ │ ├── RLMSchema_Private.h │ │ ├── RLMSchema_Private.hpp │ │ ├── RLMSwiftBridgingHeader.h │ │ ├── RLMSwiftSupport.h │ │ ├── RLMSyncConfiguration.h │ │ ├── RLMSyncConfiguration_Private.h │ │ ├── RLMSyncConfiguration_Private.hpp │ │ ├── RLMSyncCredentials.h │ │ ├── RLMSyncManager.h │ │ ├── RLMSyncManager_Private.h │ │ ├── RLMSyncPermission.h │ │ ├── RLMSyncPermissionResults.h │ │ ├── RLMSyncPermission_Private.hpp │ │ ├── RLMSyncSession.h │ │ ├── RLMSyncSessionRefreshHandle.h │ │ ├── RLMSyncSessionRefreshHandle.hpp │ │ ├── RLMSyncSession_Private.hpp │ │ ├── RLMSyncSubscription.h │ │ ├── RLMSyncUser.h │ │ ├── RLMSyncUser_Private.hpp │ │ ├── RLMSyncUtil.h │ │ ├── RLMSyncUtil_Private.h │ │ ├── RLMSyncUtil_Private.hpp │ │ ├── RLMThreadSafeReference.h │ │ ├── RLMThreadSafeReference_Private.hpp │ │ ├── RLMUpdateChecker.hpp │ │ ├── RLMUtil.hpp │ │ ├── Realm.h │ │ ├── binding_callback_thread_observer.hpp │ │ ├── binding_context.hpp │ │ ├── collection_notifications.hpp │ │ ├── core │ │ ├── realm.hpp │ │ └── realm │ │ │ ├── alloc.hpp │ │ │ ├── alloc_slab.hpp │ │ │ ├── array.hpp │ │ │ ├── array_basic.hpp │ │ │ ├── array_basic_tpl.hpp │ │ │ ├── array_binary.hpp │ │ │ ├── array_blob.hpp │ │ │ ├── array_blobs_big.hpp │ │ │ ├── array_direct.hpp │ │ │ ├── array_integer.hpp │ │ │ ├── array_string.hpp │ │ │ ├── array_string_long.hpp │ │ │ ├── binary_data.hpp │ │ │ ├── bptree.hpp │ │ │ ├── chunked_binary.hpp │ │ │ ├── column.hpp │ │ │ ├── column_backlink.hpp │ │ │ ├── column_binary.hpp │ │ │ ├── column_fwd.hpp │ │ │ ├── column_link.hpp │ │ │ ├── column_linkbase.hpp │ │ │ ├── column_linklist.hpp │ │ │ ├── column_mixed.hpp │ │ │ ├── column_mixed_tpl.hpp │ │ │ ├── column_string.hpp │ │ │ ├── column_string_enum.hpp │ │ │ ├── column_table.hpp │ │ │ ├── column_timestamp.hpp │ │ │ ├── column_tpl.hpp │ │ │ ├── column_type.hpp │ │ │ ├── column_type_traits.hpp │ │ │ ├── data_type.hpp │ │ │ ├── descriptor.hpp │ │ │ ├── descriptor_fwd.hpp │ │ │ ├── disable_sync_to_disk.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── group.hpp │ │ │ ├── group_shared.hpp │ │ │ ├── group_shared_options.hpp │ │ │ ├── group_writer.hpp │ │ │ ├── handover_defs.hpp │ │ │ ├── history.hpp │ │ │ ├── impl │ │ │ ├── array_writer.hpp │ │ │ ├── clamped_hex_dump.hpp │ │ │ ├── clock.hpp │ │ │ ├── cont_transact_hist.hpp │ │ │ ├── destroy_guard.hpp │ │ │ ├── input_stream.hpp │ │ │ ├── output_stream.hpp │ │ │ ├── sequential_getter.hpp │ │ │ ├── simulated_failure.hpp │ │ │ └── transact_log.hpp │ │ │ ├── index_string.hpp │ │ │ ├── lang_bind_helper.hpp │ │ │ ├── link_view.hpp │ │ │ ├── link_view_fwd.hpp │ │ │ ├── metrics │ │ │ ├── metric_timer.hpp │ │ │ ├── metrics.hpp │ │ │ ├── query_info.hpp │ │ │ └── transaction_info.hpp │ │ │ ├── mixed.hpp │ │ │ ├── null.hpp │ │ │ ├── olddatetime.hpp │ │ │ ├── owned_data.hpp │ │ │ ├── parser │ │ │ ├── collection_operator_expression.hpp │ │ │ ├── expression_container.hpp │ │ │ ├── keypath_mapping.hpp │ │ │ ├── parser.hpp │ │ │ ├── parser_utils.hpp │ │ │ ├── property_expression.hpp │ │ │ ├── query_builder.hpp │ │ │ ├── subquery_expression.hpp │ │ │ └── value_expression.hpp │ │ │ ├── query.hpp │ │ │ ├── query_conditions.hpp │ │ │ ├── query_engine.hpp │ │ │ ├── query_expression.hpp │ │ │ ├── query_operators.hpp │ │ │ ├── realm_nmmintrin.h │ │ │ ├── replication.hpp │ │ │ ├── row.hpp │ │ │ ├── spec.hpp │ │ │ ├── string_data.hpp │ │ │ ├── sync │ │ │ ├── changeset.hpp │ │ │ ├── changeset_cooker.hpp │ │ │ ├── changeset_encoder.hpp │ │ │ ├── changeset_parser.hpp │ │ │ ├── client.hpp │ │ │ ├── crypto.hpp │ │ │ ├── crypto_server.hpp │ │ │ ├── feature_token.hpp │ │ │ ├── history.hpp │ │ │ ├── instruction_applier.hpp │ │ │ ├── instruction_replication.hpp │ │ │ ├── instructions.hpp │ │ │ ├── object.hpp │ │ │ ├── object_id.hpp │ │ │ ├── permissions.hpp │ │ │ ├── protocol.hpp │ │ │ ├── transform.hpp │ │ │ └── version.hpp │ │ │ ├── table.hpp │ │ │ ├── table_ref.hpp │ │ │ ├── table_view.hpp │ │ │ ├── timestamp.hpp │ │ │ ├── unicode.hpp │ │ │ ├── util │ │ │ ├── aes_cryptor.hpp │ │ │ ├── allocation_metrics.hpp │ │ │ ├── allocator.hpp │ │ │ ├── any.hpp │ │ │ ├── assert.hpp │ │ │ ├── backtrace.hpp │ │ │ ├── base64.hpp │ │ │ ├── basic_system_errors.hpp │ │ │ ├── bind_ptr.hpp │ │ │ ├── buffer.hpp │ │ │ ├── buffer_stream.hpp │ │ │ ├── call_with_tuple.hpp │ │ │ ├── cf_ptr.hpp │ │ │ ├── circular_buffer.hpp │ │ │ ├── compression.hpp │ │ │ ├── config.h │ │ │ ├── demangle.hpp │ │ │ ├── encrypted_file_mapping.hpp │ │ │ ├── enum.hpp │ │ │ ├── errno.hpp │ │ │ ├── features.h │ │ │ ├── file.hpp │ │ │ ├── file_mapper.hpp │ │ │ ├── flat_map.hpp │ │ │ ├── get_file_size.hpp │ │ │ ├── hex_dump.hpp │ │ │ ├── http.hpp │ │ │ ├── inspect.hpp │ │ │ ├── interprocess_condvar.hpp │ │ │ ├── interprocess_mutex.hpp │ │ │ ├── json_parser.hpp │ │ │ ├── load_file.hpp │ │ │ ├── logger.hpp │ │ │ ├── memory_stream.hpp │ │ │ ├── metered │ │ │ │ ├── deque.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ ├── unordered_set.hpp │ │ │ │ └── vector.hpp │ │ │ ├── misc_errors.hpp │ │ │ ├── misc_ext_errors.hpp │ │ │ ├── miscellaneous.hpp │ │ │ ├── network.hpp │ │ │ ├── network_ssl.hpp │ │ │ ├── optional.hpp │ │ │ ├── overload.hpp │ │ │ ├── parent_dir.hpp │ │ │ ├── platform_info.hpp │ │ │ ├── priority_queue.hpp │ │ │ ├── random.hpp │ │ │ ├── resource_limits.hpp │ │ │ ├── safe_int_ops.hpp │ │ │ ├── scope_exit.hpp │ │ │ ├── serializer.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── signal_blocker.hpp │ │ │ ├── string_buffer.hpp │ │ │ ├── system_process.hpp │ │ │ ├── terminate.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_exec_guard.hpp │ │ │ ├── time.hpp │ │ │ ├── to_string.hpp │ │ │ ├── type_list.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── uri.hpp │ │ │ ├── utf8.hpp │ │ │ ├── value_reset_guard.hpp │ │ │ └── websocket.hpp │ │ │ ├── utilities.hpp │ │ │ ├── version.hpp │ │ │ ├── version_id.hpp │ │ │ └── views.hpp │ │ ├── execution_context_id.hpp │ │ ├── feature_checks.hpp │ │ ├── impl │ │ ├── apple │ │ │ ├── external_commit_helper.hpp │ │ │ └── keychain_helper.hpp │ │ ├── collection_change_builder.hpp │ │ ├── collection_notifier.hpp │ │ ├── external_commit_helper.hpp │ │ ├── list_notifier.hpp │ │ ├── notification_wrapper.hpp │ │ ├── object_accessor_impl.hpp │ │ ├── object_notifier.hpp │ │ ├── primitive_list_notifier.hpp │ │ ├── realm_coordinator.hpp │ │ ├── results_notifier.hpp │ │ ├── transact_log_handler.hpp │ │ └── weak_realm_notifier.hpp │ │ ├── index_set.hpp │ │ ├── list.hpp │ │ ├── object.hpp │ │ ├── object_accessor.hpp │ │ ├── object_schema.hpp │ │ ├── object_store.hpp │ │ ├── property.hpp │ │ ├── results.hpp │ │ ├── schema.hpp │ │ ├── shared_realm.hpp │ │ ├── sync │ │ ├── impl │ │ │ ├── apple │ │ │ │ ├── network_reachability_observer.hpp │ │ │ │ └── system_configuration.hpp │ │ │ ├── network_reachability.hpp │ │ │ ├── sync_client.hpp │ │ │ ├── sync_file.hpp │ │ │ ├── sync_metadata.hpp │ │ │ └── work_queue.hpp │ │ ├── partial_sync.hpp │ │ ├── subscription_state.hpp │ │ ├── sync_config.hpp │ │ ├── sync_manager.hpp │ │ ├── sync_permission.hpp │ │ ├── sync_session.hpp │ │ └── sync_user.hpp │ │ ├── thread_safe_reference.hpp │ │ └── util │ │ ├── aligned_union.hpp │ │ ├── apple │ │ └── event_loop_signal.hpp │ │ ├── atomic_shared_ptr.hpp │ │ ├── event_loop_signal.hpp │ │ ├── tagged_bool.hpp │ │ └── uuid.hpp ├── RealmSwift │ ├── LICENSE │ ├── README.md │ ├── RealmSwift │ │ ├── Aliases.swift │ │ ├── Error.swift │ │ ├── LinkingObjects.swift │ │ ├── List.swift │ │ ├── Migration.swift │ │ ├── Object.swift │ │ ├── ObjectSchema.swift │ │ ├── ObjectiveCSupport.swift │ │ ├── Optional.swift │ │ ├── Property.swift │ │ ├── Realm.swift │ │ ├── RealmCollection.swift │ │ ├── RealmConfiguration.swift │ │ ├── Results.swift │ │ ├── Schema.swift │ │ ├── SortDescriptor.swift │ │ ├── SwiftVersion.swift │ │ ├── Sync.swift │ │ ├── ThreadSafeReference.swift │ │ └── Util.swift │ └── build.sh ├── Result │ ├── LICENSE │ ├── README.md │ └── Result │ │ ├── AnyError.swift │ │ ├── NoError.swift │ │ ├── Result.swift │ │ └── ResultProtocol.swift ├── RxAtomic │ ├── LICENSE.md │ ├── README.md │ └── RxAtomic │ │ ├── RxAtomic.c │ │ └── include │ │ └── RxAtomic.h ├── RxSwift │ ├── LICENSE.md │ ├── Platform │ │ ├── AtomicInt.swift │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DeprecationWarner.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ ├── README.md │ └── RxSwift │ │ ├── AnyObserver.swift │ │ ├── Cancelable.swift │ │ ├── Concurrency │ │ ├── AsyncLock.swift │ │ ├── Lock.swift │ │ ├── LockOwnerType.swift │ │ ├── SynchronizedDisposeType.swift │ │ ├── SynchronizedOnType.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 │ │ ├── Observable.swift │ │ ├── ObservableConvertibleType.swift │ │ ├── ObservableType+Extensions.swift │ │ ├── ObservableType.swift │ │ ├── Observables │ │ ├── AddRef.swift │ │ ├── Amb.swift │ │ ├── AsMaybe.swift │ │ ├── AsSingle.swift │ │ ├── Buffer.swift │ │ ├── Catch.swift │ │ ├── CombineLatest+Collection.swift │ │ ├── CombineLatest+arity.swift │ │ ├── CombineLatest.swift │ │ ├── Concat.swift │ │ ├── Create.swift │ │ ├── Debounce.swift │ │ ├── Debug.swift │ │ ├── DefaultIfEmpty.swift │ │ ├── Deferred.swift │ │ ├── Delay.swift │ │ ├── DelaySubscription.swift │ │ ├── Dematerialize.swift │ │ ├── DistinctUntilChanged.swift │ │ ├── Do.swift │ │ ├── ElementAt.swift │ │ ├── Empty.swift │ │ ├── Enumerated.swift │ │ ├── Error.swift │ │ ├── Filter.swift │ │ ├── First.swift │ │ ├── Generate.swift │ │ ├── GroupBy.swift │ │ ├── Just.swift │ │ ├── Map.swift │ │ ├── Materialize.swift │ │ ├── Merge.swift │ │ ├── Multicast.swift │ │ ├── Never.swift │ │ ├── ObserveOn.swift │ │ ├── Optional.swift │ │ ├── Producer.swift │ │ ├── Range.swift │ │ ├── Reduce.swift │ │ ├── Repeat.swift │ │ ├── RetryWhen.swift │ │ ├── Sample.swift │ │ ├── Scan.swift │ │ ├── Sequence.swift │ │ ├── ShareReplayScope.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.swift │ │ ├── ObserverType.swift │ │ ├── Observers │ │ ├── AnonymousObserver.swift │ │ ├── ObserverBase.swift │ │ └── TailRecursiveSink.swift │ │ ├── Reactive.swift │ │ ├── Rx.swift │ │ ├── RxMutableBox.swift │ │ ├── SchedulerType.swift │ │ ├── Schedulers │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ ├── ConcurrentMainScheduler.swift │ │ ├── CurrentThreadScheduler.swift │ │ ├── HistoricalScheduler.swift │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ ├── Internal │ │ │ ├── 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 │ │ ├── SwiftSupport │ │ └── SwiftSupport.swift │ │ └── Traits │ │ ├── Completable+AndThen.swift │ │ ├── Completable.swift │ │ ├── Maybe.swift │ │ ├── ObservableType+PrimitiveSequence.swift │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ ├── PrimitiveSequence.swift │ │ └── Single.swift ├── Target Support Files │ ├── Alamofire-iOS │ │ ├── Alamofire-iOS-Info.plist │ │ ├── Alamofire-iOS-dummy.m │ │ ├── Alamofire-iOS-prefix.pch │ │ ├── Alamofire-iOS-umbrella.h │ │ ├── Alamofire-iOS.modulemap │ │ ├── Alamofire-iOS.xcconfig │ │ └── Info.plist │ ├── Alamofire-macOS │ │ ├── Alamofire-macOS-Info.plist │ │ ├── Alamofire-macOS-dummy.m │ │ ├── Alamofire-macOS-prefix.pch │ │ ├── Alamofire-macOS-umbrella.h │ │ ├── Alamofire-macOS.modulemap │ │ ├── Alamofire-macOS.xcconfig │ │ └── Info.plist │ ├── Alamofire-tvOS │ │ ├── Alamofire-tvOS-Info.plist │ │ ├── Alamofire-tvOS-dummy.m │ │ ├── Alamofire-tvOS-prefix.pch │ │ ├── Alamofire-tvOS-umbrella.h │ │ ├── Alamofire-tvOS.modulemap │ │ ├── Alamofire-tvOS.xcconfig │ │ └── Info.plist │ ├── EVReflection-0db607d1 │ │ ├── EVReflection-0db607d1-Info.plist │ │ ├── EVReflection-0db607d1-dummy.m │ │ ├── EVReflection-0db607d1-prefix.pch │ │ ├── EVReflection-0db607d1-umbrella.h │ │ ├── EVReflection-0db607d1.modulemap │ │ ├── EVReflection-0db607d1.xcconfig │ │ └── Info.plist │ ├── EVReflection-18115d1d │ │ ├── EVReflection-18115d1d-Info.plist │ │ ├── EVReflection-18115d1d-dummy.m │ │ ├── EVReflection-18115d1d-prefix.pch │ │ ├── EVReflection-18115d1d-umbrella.h │ │ ├── EVReflection-18115d1d.modulemap │ │ ├── EVReflection-18115d1d.xcconfig │ │ └── Info.plist │ ├── EVReflection-Core │ │ ├── EVReflection-Core-Info.plist │ │ ├── EVReflection-Core-dummy.m │ │ ├── EVReflection-Core-prefix.pch │ │ ├── EVReflection-Core-umbrella.h │ │ ├── EVReflection-Core.modulemap │ │ ├── EVReflection-Core.xcconfig │ │ └── Info.plist │ ├── EVReflection-e20423af │ │ ├── EVReflection-e20423af-Info.plist │ │ ├── EVReflection-e20423af-dummy.m │ │ ├── EVReflection-e20423af-prefix.pch │ │ ├── EVReflection-e20423af-umbrella.h │ │ ├── EVReflection-e20423af.modulemap │ │ ├── EVReflection-e20423af.xcconfig │ │ └── Info.plist │ ├── Moya-iOS │ │ ├── Info.plist │ │ ├── Moya-iOS-Info.plist │ │ ├── Moya-iOS-dummy.m │ │ ├── Moya-iOS-prefix.pch │ │ ├── Moya-iOS-umbrella.h │ │ ├── Moya-iOS.modulemap │ │ └── Moya-iOS.xcconfig │ ├── Moya-macOS │ │ ├── Info.plist │ │ ├── Moya-macOS-Info.plist │ │ ├── Moya-macOS-dummy.m │ │ ├── Moya-macOS-prefix.pch │ │ ├── Moya-macOS-umbrella.h │ │ ├── Moya-macOS.modulemap │ │ └── Moya-macOS.xcconfig │ ├── Moya-tvOS │ │ ├── Info.plist │ │ ├── Moya-tvOS-Info.plist │ │ ├── Moya-tvOS-dummy.m │ │ ├── Moya-tvOS-prefix.pch │ │ ├── Moya-tvOS-umbrella.h │ │ ├── Moya-tvOS.modulemap │ │ └── Moya-tvOS.xcconfig │ ├── Pods-44Demo5 │ │ ├── Info.plist │ │ ├── Pods-44Demo5-Info.plist │ │ ├── Pods-44Demo5-acknowledgements.markdown │ │ ├── Pods-44Demo5-acknowledgements.plist │ │ ├── Pods-44Demo5-dummy.m │ │ ├── Pods-44Demo5-frameworks.sh │ │ ├── Pods-44Demo5-resources.sh │ │ ├── Pods-44Demo5-umbrella.h │ │ ├── Pods-44Demo5.debug.xcconfig │ │ ├── Pods-44Demo5.modulemap │ │ └── Pods-44Demo5.release.xcconfig │ ├── Pods-Performance.Test │ │ ├── Info.plist │ │ ├── Pods-Performance.Test-Info.plist │ │ ├── Pods-Performance.Test-acknowledgements.markdown │ │ ├── Pods-Performance.Test-acknowledgements.plist │ │ ├── Pods-Performance.Test-dummy.m │ │ ├── Pods-Performance.Test-frameworks.sh │ │ ├── Pods-Performance.Test-resources.sh │ │ ├── Pods-Performance.Test-umbrella.h │ │ ├── Pods-Performance.Test.debug.xcconfig │ │ ├── Pods-Performance.Test.modulemap │ │ └── Pods-Performance.Test.release.xcconfig │ ├── Pods-UnitTestsOSX │ │ ├── Info.plist │ │ ├── Pods-UnitTestsOSX-Info.plist │ │ ├── Pods-UnitTestsOSX-acknowledgements.markdown │ │ ├── Pods-UnitTestsOSX-acknowledgements.plist │ │ ├── Pods-UnitTestsOSX-dummy.m │ │ ├── Pods-UnitTestsOSX-frameworks.sh │ │ ├── Pods-UnitTestsOSX-resources.sh │ │ ├── Pods-UnitTestsOSX-umbrella.h │ │ ├── Pods-UnitTestsOSX.debug.xcconfig │ │ ├── Pods-UnitTestsOSX.modulemap │ │ └── Pods-UnitTestsOSX.release.xcconfig │ ├── Pods-UnitTestsTVOS │ │ ├── Info.plist │ │ ├── Pods-UnitTestsTVOS-Info.plist │ │ ├── Pods-UnitTestsTVOS-acknowledgements.markdown │ │ ├── Pods-UnitTestsTVOS-acknowledgements.plist │ │ ├── Pods-UnitTestsTVOS-dummy.m │ │ ├── Pods-UnitTestsTVOS-frameworks.sh │ │ ├── Pods-UnitTestsTVOS-resources.sh │ │ ├── Pods-UnitTestsTVOS-umbrella.h │ │ ├── Pods-UnitTestsTVOS.debug.xcconfig │ │ ├── Pods-UnitTestsTVOS.modulemap │ │ └── Pods-UnitTestsTVOS.release.xcconfig │ ├── Pods-UnitTestsiOS │ │ ├── Info.plist │ │ ├── Pods-UnitTestsiOS-Info.plist │ │ ├── Pods-UnitTestsiOS-acknowledgements.markdown │ │ ├── Pods-UnitTestsiOS-acknowledgements.plist │ │ ├── Pods-UnitTestsiOS-dummy.m │ │ ├── Pods-UnitTestsiOS-frameworks.sh │ │ ├── Pods-UnitTestsiOS-resources.sh │ │ ├── Pods-UnitTestsiOS-umbrella.h │ │ ├── Pods-UnitTestsiOS.debug.xcconfig │ │ ├── Pods-UnitTestsiOS.modulemap │ │ └── Pods-UnitTestsiOS.release.xcconfig │ ├── ReactiveSwift-iOS │ │ ├── Info.plist │ │ ├── ReactiveSwift-iOS-Info.plist │ │ ├── ReactiveSwift-iOS-dummy.m │ │ ├── ReactiveSwift-iOS-prefix.pch │ │ ├── ReactiveSwift-iOS-umbrella.h │ │ ├── ReactiveSwift-iOS.modulemap │ │ └── ReactiveSwift-iOS.xcconfig │ ├── ReactiveSwift-macOS │ │ ├── Info.plist │ │ ├── ReactiveSwift-macOS-Info.plist │ │ ├── ReactiveSwift-macOS-dummy.m │ │ ├── ReactiveSwift-macOS-prefix.pch │ │ ├── ReactiveSwift-macOS-umbrella.h │ │ ├── ReactiveSwift-macOS.modulemap │ │ └── ReactiveSwift-macOS.xcconfig │ ├── ReactiveSwift-tvOS │ │ ├── Info.plist │ │ ├── ReactiveSwift-tvOS-Info.plist │ │ ├── ReactiveSwift-tvOS-dummy.m │ │ ├── ReactiveSwift-tvOS-prefix.pch │ │ ├── ReactiveSwift-tvOS-umbrella.h │ │ ├── ReactiveSwift-tvOS.modulemap │ │ └── ReactiveSwift-tvOS.xcconfig │ ├── Realm-iOS │ │ ├── Info.plist │ │ ├── Realm-iOS-Info.plist │ │ ├── Realm-iOS-dummy.m │ │ ├── Realm-iOS-prefix.pch │ │ ├── Realm-iOS.modulemap │ │ └── Realm-iOS.xcconfig │ ├── Realm-macOS │ │ ├── Info.plist │ │ ├── Realm-macOS-Info.plist │ │ ├── Realm-macOS-dummy.m │ │ ├── Realm-macOS-prefix.pch │ │ ├── Realm-macOS.modulemap │ │ └── Realm-macOS.xcconfig │ ├── Realm-tvOS │ │ ├── Info.plist │ │ ├── Realm-tvOS-Info.plist │ │ ├── Realm-tvOS-dummy.m │ │ ├── Realm-tvOS-prefix.pch │ │ ├── Realm-tvOS.modulemap │ │ └── Realm-tvOS.xcconfig │ ├── RealmSwift-iOS │ │ ├── Info.plist │ │ ├── RealmSwift-iOS-Info.plist │ │ ├── RealmSwift-iOS-dummy.m │ │ ├── RealmSwift-iOS-prefix.pch │ │ ├── RealmSwift-iOS-umbrella.h │ │ ├── RealmSwift-iOS.modulemap │ │ └── RealmSwift-iOS.xcconfig │ ├── RealmSwift-macOS │ │ ├── Info.plist │ │ ├── RealmSwift-macOS-Info.plist │ │ ├── RealmSwift-macOS-dummy.m │ │ ├── RealmSwift-macOS-prefix.pch │ │ ├── RealmSwift-macOS-umbrella.h │ │ ├── RealmSwift-macOS.modulemap │ │ └── RealmSwift-macOS.xcconfig │ ├── RealmSwift-tvOS │ │ ├── Info.plist │ │ ├── RealmSwift-tvOS-Info.plist │ │ ├── RealmSwift-tvOS-dummy.m │ │ ├── RealmSwift-tvOS-prefix.pch │ │ ├── RealmSwift-tvOS-umbrella.h │ │ ├── RealmSwift-tvOS.modulemap │ │ └── RealmSwift-tvOS.xcconfig │ ├── Result-iOS │ │ ├── Info.plist │ │ ├── Result-iOS-Info.plist │ │ ├── Result-iOS-dummy.m │ │ ├── Result-iOS-prefix.pch │ │ ├── Result-iOS-umbrella.h │ │ ├── Result-iOS.modulemap │ │ └── Result-iOS.xcconfig │ ├── Result-macOS │ │ ├── Info.plist │ │ ├── Result-macOS-Info.plist │ │ ├── Result-macOS-dummy.m │ │ ├── Result-macOS-prefix.pch │ │ ├── Result-macOS-umbrella.h │ │ ├── Result-macOS.modulemap │ │ └── Result-macOS.xcconfig │ ├── Result-tvOS │ │ ├── Info.plist │ │ ├── Result-tvOS-Info.plist │ │ ├── Result-tvOS-dummy.m │ │ ├── Result-tvOS-prefix.pch │ │ ├── Result-tvOS-umbrella.h │ │ ├── Result-tvOS.modulemap │ │ └── Result-tvOS.xcconfig │ ├── RxAtomic-iOS │ │ ├── RxAtomic-iOS-Info.plist │ │ ├── RxAtomic-iOS-dummy.m │ │ ├── RxAtomic-iOS-prefix.pch │ │ ├── RxAtomic-iOS-umbrella.h │ │ ├── RxAtomic-iOS.modulemap │ │ └── RxAtomic-iOS.xcconfig │ ├── RxAtomic-macOS │ │ ├── RxAtomic-macOS-Info.plist │ │ ├── RxAtomic-macOS-dummy.m │ │ ├── RxAtomic-macOS-prefix.pch │ │ ├── RxAtomic-macOS-umbrella.h │ │ ├── RxAtomic-macOS.modulemap │ │ └── RxAtomic-macOS.xcconfig │ ├── RxAtomic-tvOS │ │ ├── RxAtomic-tvOS-Info.plist │ │ ├── RxAtomic-tvOS-dummy.m │ │ ├── RxAtomic-tvOS-prefix.pch │ │ ├── RxAtomic-tvOS-umbrella.h │ │ ├── RxAtomic-tvOS.modulemap │ │ └── RxAtomic-tvOS.xcconfig │ ├── RxSwift-iOS │ │ ├── Info.plist │ │ ├── RxSwift-iOS-Info.plist │ │ ├── RxSwift-iOS-dummy.m │ │ ├── RxSwift-iOS-prefix.pch │ │ ├── RxSwift-iOS-umbrella.h │ │ ├── RxSwift-iOS.modulemap │ │ └── RxSwift-iOS.xcconfig │ ├── RxSwift-macOS │ │ ├── Info.plist │ │ ├── RxSwift-macOS-Info.plist │ │ ├── RxSwift-macOS-dummy.m │ │ ├── RxSwift-macOS-prefix.pch │ │ ├── RxSwift-macOS-umbrella.h │ │ ├── RxSwift-macOS.modulemap │ │ └── RxSwift-macOS.xcconfig │ ├── RxSwift-tvOS │ │ ├── Info.plist │ │ ├── RxSwift-tvOS-Info.plist │ │ ├── RxSwift-tvOS-dummy.m │ │ ├── RxSwift-tvOS-prefix.pch │ │ ├── RxSwift-tvOS-umbrella.h │ │ ├── RxSwift-tvOS.modulemap │ │ └── RxSwift-tvOS.xcconfig │ ├── XMLDictionary-iOS │ │ ├── Info.plist │ │ ├── XMLDictionary-iOS-Info.plist │ │ ├── XMLDictionary-iOS-dummy.m │ │ ├── XMLDictionary-iOS-prefix.pch │ │ ├── XMLDictionary-iOS-umbrella.h │ │ ├── XMLDictionary-iOS.modulemap │ │ └── XMLDictionary-iOS.xcconfig │ ├── XMLDictionary-macOS │ │ ├── Info.plist │ │ ├── XMLDictionary-macOS-Info.plist │ │ ├── XMLDictionary-macOS-dummy.m │ │ ├── XMLDictionary-macOS-prefix.pch │ │ ├── XMLDictionary-macOS-umbrella.h │ │ ├── XMLDictionary-macOS.modulemap │ │ └── XMLDictionary-macOS.xcconfig │ └── XMLDictionary-tvOS │ │ ├── Info.plist │ │ ├── XMLDictionary-tvOS-Info.plist │ │ ├── XMLDictionary-tvOS-dummy.m │ │ ├── XMLDictionary-tvOS-prefix.pch │ │ ├── XMLDictionary-tvOS-umbrella.h │ │ ├── XMLDictionary-tvOS.modulemap │ │ └── XMLDictionary-tvOS.xcconfig └── XMLDictionary │ ├── LICENCE.md │ ├── README.md │ └── XMLDictionary │ ├── XMLDictionary.h │ └── XMLDictionary.m ├── README.md ├── Source ├── Alamofire │ ├── DataRequest+EVReflectable.swift │ ├── Moya │ │ ├── README.md │ │ ├── ReactiveSwift │ │ │ ├── README.md │ │ │ ├── SignalProducer+EVReflectable.swift │ │ │ └── XML │ │ │ │ ├── README.md │ │ │ │ └── SignalProducer+EVReflectable+XMLDictionary.swift │ │ ├── Response+EVReflectable.swift │ │ ├── RxSwift │ │ │ ├── Observable+EVReflectable.swift │ │ │ ├── README.md │ │ │ └── XML │ │ │ │ ├── Observable+EVReflectable+XMLDictionary.swift │ │ │ │ └── README.md │ │ └── XML │ │ │ ├── README.md │ │ │ └── Response+EVReflectable+XMLDictionary.swift │ ├── README.md │ └── XML │ │ ├── DataRequest+EVReflectable+XMLDictionary.swift │ │ └── README.md ├── CloudKit │ ├── CKDataObject.swift │ ├── CKRecord+EVReflectable.swift │ ├── CKRecordID+EVCustomReflectable.swift │ ├── CKReference+EVCustomReflectable.swift │ └── README.md ├── ConversionOptions.swift ├── CoreData │ ├── EVManagedObject.swift │ ├── EVManagedObjectArrayExtension.swift │ └── README.md ├── DeserializationStatus.swift ├── EVArrayExtension.swift ├── EVCustomReflectable.swift ├── EVDictionaryExtension.swift ├── EVObject.swift ├── EVReflectable.swift ├── EVReflection.swift ├── EVWorkaroundHelpers.swift ├── PrintOptions.swift ├── README.md ├── Realm │ ├── README.md │ ├── RealmListEVCustomReflectable.swift │ ├── RealmObjectEVCustomReflectable.swift │ ├── RealmObjectExtension.swift │ └── RealmOptionalEVCustomReflectable.swift └── XML │ ├── EVReflectable+XMLDictionary.swift │ ├── README.md │ └── Xml2Dictionary.podspec └── UnitTests ├── .gitignore ├── .swiftlint.yml ├── AlamofireTests ├── AlamofireExternalTests.swift ├── AlamofireTests.swift ├── ArrayConversionIssue.swift ├── ArrayConversionIssue_json ├── NestedGenericsIssue25.swift ├── NestedGenericsIssue25_json ├── sample_array_json ├── sample_json └── sample_users_array_json ├── AlamofireXmlTests ├── AlamofireXml2Tests.swift ├── AlamofireXml3Tests.swift ├── AlamofireXmlTests.swift ├── Issue4Test.swift ├── Issue4_xml ├── Issue6Test.swift ├── Issue6_xml ├── sampl2_xml ├── sample3_xml └── sample_xml ├── CloudKit ├── CKAsset+UIImage.swift └── CloudKitTests.swift ├── CoreDataTests ├── CDUser+CoreDataClass.swift ├── CoreDataPerson+CoreDataClass.swift ├── CoreDataPerson+CoreDataProperties.swift ├── CoreDataStack.swift ├── CoreDataTests.swift └── EVReflectionTest.xcdatamodeld │ └── EVReflectionTest.xcdatamodel │ └── contents ├── EVReflectionTestData.swift ├── EVReflectionTests ├── EVObjectDescription.swift ├── EVObjectDescriptionTests.swift ├── EVReflectionAssociatedTests.swift ├── EVReflectionConversionOptionsTest.swift ├── EVReflectionCustomConverterTests.swift ├── EVReflectionCustomInitTests.swift ├── EVReflectionEVCustomReflectable.swift ├── EVReflectionEVObjectTests.swift ├── EVReflectionEventKitTests.swift ├── EVReflectionExtendingNSObjects.swift ├── EVReflectionIssue102.swift ├── EVReflectionIssue107.swift ├── EVReflectionIssue110.swift ├── EVReflectionIssue114b.swift ├── EVReflectionIssue124.plist ├── EVReflectionIssue124.swift ├── EVReflectionIssue141.swift ├── EVReflectionIssue145.swift ├── EVReflectionIssue159.json ├── EVReflectionIssue159.swift ├── EVReflectionIssue186.swift ├── EVReflectionIssue197.swift ├── EVReflectionIssue20190117.json ├── EVReflectionIssue20190117.swift ├── EVReflectionIssue202.swift ├── EVReflectionIssue204.swift ├── EVReflectionIssue213.json ├── EVReflectionIssue213.swift ├── EVReflectionIssue223.swift ├── EVReflectionIssue276.swift ├── EVReflectionIssue285.swift ├── EVReflectionIssue292.swift ├── EVReflectionIssue84.swift ├── EVReflectionIssue86.swift ├── EVReflectionIssue88.swift ├── EVReflectionIssue91.swift ├── EVReflectionIssue96.swift ├── EVReflectionIssue99.swift ├── EVReflectionIssueAF30.swift ├── EVReflectionIssueAF39.swift ├── EVReflectionIssueX.json ├── EVReflectionIssueX.swift ├── EVReflectionJsonTests.swift ├── EVReflectionMappingTest.swift ├── EVReflectionNestedObjectsTests.swift ├── EVReflectionNumbersTests.swift ├── EVReflectionPropertyMappingTest.swift ├── EVReflectionSyncAlternateDesync.swift ├── EVReflectionTests.swift ├── EVReflectionTests2.swift ├── EVReflectionWorkaroundSwiftGenericsTests.swift ├── EVReflectionWorkaroundsTests.swift ├── EVRelfectionInheritanceTests.swift ├── ProfilePhotoUrlListTest.swift ├── TestObjects.swift ├── WorkaroundEnumTest.swift ├── ios-Info.plist ├── osx-Info.plist ├── sample.json └── tvos-Info.plist ├── MoyaTests └── MoyaRxSwiftTests.swift ├── README.md ├── RealmTestIssue219.json ├── RealmTestIssue219.swift ├── RealmTestIssue221.json ├── RealmTestIssue221.swift ├── RealmTests └── RealmTests.swift ├── UnitTests.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── UnitTestsOSX.xcscheme │ └── UnitTestsTVOS.xcscheme ├── coverage.png └── nestedArrayData_json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /Carthage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/.gitignore -------------------------------------------------------------------------------- /Carthage/Carthage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/Carthage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/EVReflectionCloudKitIOS/EVReflectionCloudKitIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionCloudKitIOS/EVReflectionCloudKitIOS.h -------------------------------------------------------------------------------- /Carthage/EVReflectionCloudKitIOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionCloudKitIOS/Info.plist -------------------------------------------------------------------------------- /Carthage/EVReflectionCloudKitMacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionCloudKitMacOS/Info.plist -------------------------------------------------------------------------------- /Carthage/EVReflectionIOS/EVReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionIOS/EVReflection.h -------------------------------------------------------------------------------- /Carthage/EVReflectionIOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionIOS/Info.plist -------------------------------------------------------------------------------- /Carthage/EVReflectionMacOS/EVReflectionMacOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionMacOS/EVReflectionMacOS.h -------------------------------------------------------------------------------- /Carthage/EVReflectionMacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionMacOS/Info.plist -------------------------------------------------------------------------------- /Carthage/EVReflectionTVOS/EVReflectionTVOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionTVOS/EVReflectionTVOS.h -------------------------------------------------------------------------------- /Carthage/EVReflectionTVOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionTVOS/Info.plist -------------------------------------------------------------------------------- /Carthage/EVReflectionWatchOS/EVReflectionWatchOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionWatchOS/EVReflectionWatchOS.h -------------------------------------------------------------------------------- /Carthage/EVReflectionWatchOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/EVReflectionWatchOS/Info.plist -------------------------------------------------------------------------------- /Carthage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Carthage/README.md -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Demo/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/BaseViewController.swift -------------------------------------------------------------------------------- /Demo/Demo/GitHubUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/GitHubUser.swift -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Demo/Issue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/Issue.swift -------------------------------------------------------------------------------- /Demo/Demo/License.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/License.swift -------------------------------------------------------------------------------- /Demo/Demo/MoyaGitHubAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/MoyaGitHubAPI.swift -------------------------------------------------------------------------------- /Demo/Demo/MoyaRxViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/MoyaRxViewController.swift -------------------------------------------------------------------------------- /Demo/Demo/MoyaViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/MoyaViewController.swift -------------------------------------------------------------------------------- /Demo/Demo/Owner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/Owner.swift -------------------------------------------------------------------------------- /Demo/Demo/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/Demo/Repository.swift -------------------------------------------------------------------------------- /Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Demo/README.md -------------------------------------------------------------------------------- /EVReflection.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/EVReflection.podspec -------------------------------------------------------------------------------- /EVReflection.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/EVReflection.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/LICENSE -------------------------------------------------------------------------------- /PerformanceTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/.gitignore -------------------------------------------------------------------------------- /PerformanceTest/PerformanceTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/PerformanceTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PerformanceTest/PerformanceTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/PerformanceTest/AppDelegate.swift -------------------------------------------------------------------------------- /PerformanceTest/PerformanceTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/PerformanceTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PerformanceTest/PerformanceTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/PerformanceTest/Info.plist -------------------------------------------------------------------------------- /PerformanceTest/PerformanceTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/PerformanceTest/ViewController.swift -------------------------------------------------------------------------------- /PerformanceTest/PerformanceTest/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/PerformanceTest/test.json -------------------------------------------------------------------------------- /PerformanceTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/PerformanceTest/README.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Local Podspecs/EVReflection.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Local Podspecs/EVReflection.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/Moya.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Local Podspecs/Moya.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/RxSwift.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Local Podspecs/RxSwift.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Moya/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/License.md -------------------------------------------------------------------------------- /Pods/Moya/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Readme.md -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/AnyEncodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/AnyEncodable.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Cancellable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Cancellable.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Endpoint.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Image.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Moya+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Moya+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MoyaError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/MoyaError.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MoyaProvider+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/MoyaProvider+Defaults.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MoyaProvider+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/MoyaProvider+Internal.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MoyaProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/MoyaProvider.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MultiTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/MultiTarget.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Plugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Plugins/AccessTokenPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Plugins/AccessTokenPlugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Plugins/CredentialsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Plugins/CredentialsPlugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Plugins/NetworkActivityPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Plugins/NetworkActivityPlugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Plugins/NetworkLoggerPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Plugins/NetworkLoggerPlugin.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Response.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/TargetType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/TargetType.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Task.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/Task.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/URL+Moya.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/URL+Moya.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/URLRequest+Encoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/URLRequest+Encoding.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/ValidationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/Moya/ValidationType.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/ReactiveMoya/MoyaProvider+Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/ReactiveMoya/MoyaProvider+Reactive.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/RxMoya/MoyaProvider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/RxMoya/MoyaProvider+Rx.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/RxMoya/Observable+Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/RxMoya/Observable+Response.swift -------------------------------------------------------------------------------- /Pods/Moya/Sources/RxMoya/Single+Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Moya/Sources/RxMoya/Single+Response.swift -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/ReactiveSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/LICENSE.md -------------------------------------------------------------------------------- /Pods/ReactiveSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/README.md -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Action.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Atomic.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Bag.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Deprecations+Removals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Deprecations+Removals.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Disposable.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Event.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/EventLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/EventLogger.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Flatten.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Flatten.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/FoundationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/FoundationExtensions.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Lifetime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Lifetime.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Observer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Observer.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Optional.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Property.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Reactive.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/ResultExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/ResultExtensions.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Scheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Scheduler.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/Signal.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/SignalProducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/SignalProducer.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/UnidirectionalBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/UnidirectionalBinding.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/UninhabitedTypeGuards.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/UninhabitedTypeGuards.swift -------------------------------------------------------------------------------- /Pods/ReactiveSwift/Sources/ValidatingProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/ReactiveSwift/Sources/ValidatingProperty.swift -------------------------------------------------------------------------------- /Pods/Realm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/LICENSE -------------------------------------------------------------------------------- /Pods/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/README.md -------------------------------------------------------------------------------- /Pods/Realm/Realm/NSError+RLMSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/NSError+RLMSync.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/impl/list_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/impl/list_notifier.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/impl/object_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/impl/object_notifier.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/impl/results_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/impl/results_notifier.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/index_set.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/list.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/object.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/object_schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/object_store.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/placeholder.cpp: -------------------------------------------------------------------------------- 1 | // This file is intentionally left blank. 2 | -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/results.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_file.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/impl/work_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/impl/work_queue.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_permission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_permission.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/thread_safe_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/thread_safe_reference.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMClassInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMClassInfo.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMCollection.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMJSONModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMJSONModels.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMListBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMListBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMManagedArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMManagedArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMNetworkClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMNetworkClient.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMOptionalBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMOptionalBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMRealm+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncCredentials.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncManager.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermission.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncPermission.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermissionResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncPermissionResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncSession.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSubscription.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncSubscription.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncUser.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMSyncUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMThreadSafeReference.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMThreadSafeReference.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Realm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/build.sh -------------------------------------------------------------------------------- /Pods/Realm/core/librealmcore-ios.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/core/librealmcore-ios.a -------------------------------------------------------------------------------- /Pods/Realm/core/librealmcore-macosx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/core/librealmcore-macosx.a -------------------------------------------------------------------------------- /Pods/Realm/core/librealmcore-tvos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/core/librealmcore-tvos.a -------------------------------------------------------------------------------- /Pods/Realm/include/NSError+RLMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMAccessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMClassInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMClassInfo.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMCollection_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMCollection_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMJSONModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMJSONModels.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMNetworkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMNetworkClient.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObjectSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMObservation.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMPrefix.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMProperty_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealmConfiguration+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealmConfiguration_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMResults_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncConfiguration_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncManager_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermissionResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncPermissionResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncPermission_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSessionRefreshHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncSessionRefreshHandle.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncSession_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncUser_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncUtil_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMSyncUtil_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMThreadSafeReference_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/RLMUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/Realm.h -------------------------------------------------------------------------------- /Pods/Realm/include/binding_callback_thread_observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/binding_callback_thread_observer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/binding_context.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/collection_notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/collection_notifications.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/alloc.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc_slab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/alloc_slab.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_basic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_basic_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_blob.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blobs_big.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_blobs_big.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_direct.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_integer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string_long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/array_string_long.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/binary_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/binary_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/bptree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/bptree.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/chunked_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/chunked_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_backlink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_backlink.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_link.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linkbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_linkbase.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linklist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_linklist.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_mixed_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_mixed_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_string_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_string_enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/column_type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/data_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/descriptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/descriptor_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/disable_sync_to_disk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/disable_sync_to_disk.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/exceptions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/group.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/group_shared.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_shared_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/group_shared_options.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/group_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/handover_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/handover_defs.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/array_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/array_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/clamped_hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/clamped_hex_dump.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/clock.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/cont_transact_hist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/cont_transact_hist.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/destroy_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/destroy_guard.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/input_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/input_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/output_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/output_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/sequential_getter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/sequential_getter.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/transact_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/impl/transact_log.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/index_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/index_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/lang_bind_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/lang_bind_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/link_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/link_view_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/metric_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/metrics/metric_timer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/metrics/metrics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/query_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/metrics/query_info.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/null.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/olddatetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/olddatetime.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/owned_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/owned_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/parser/parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/parser_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/parser/parser_utils.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/query_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/parser/query_builder.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/query.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_conditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/query_conditions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/query_engine.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/query_expression.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/query_operators.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/realm_nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/realm_nmmintrin.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/replication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/replication.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/row.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/spec.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/string_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/string_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/changeset.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset_cooker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/changeset_cooker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/changeset_parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/crypto.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/crypto_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/crypto_server.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/feature_token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/feature_token.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/instructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/instructions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/object_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/permissions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/protocol.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/transform.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/sync/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/table_ref.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/table_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/unicode.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/aes_cryptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/aes_cryptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/allocator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/any.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/assert.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/backtrace.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/base64.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/bind_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/bind_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/buffer_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/call_with_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/call_with_tuple.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/cf_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/cf_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/circular_buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/compression.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/config.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/demangle.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/errno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/errno.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/features.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file_mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/file_mapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/flat_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/flat_map.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/get_file_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/get_file_size.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/hex_dump.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/http.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/inspect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/inspect.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/json_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/json_parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/load_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/load_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/logger.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/memory_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/memory_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/metered/deque.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/metered/map.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/metered/set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/metered/string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/metered/vector.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/misc_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/misc_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/misc_ext_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/misc_ext_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/miscellaneous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/miscellaneous.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/network.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network_ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/network_ssl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/optional.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/overload.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/parent_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/parent_dir.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/platform_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/platform_info.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/priority_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/random.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/resource_limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/resource_limits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/safe_int_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/safe_int_ops.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/scope_exit.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/serializer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/signal_blocker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/signal_blocker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/string_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/string_buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/system_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/system_process.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/terminate.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/thread.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/time.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/to_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/type_list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/uri.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/utf8.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/util/websocket.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/utilities.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/version_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/views.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/core/realm/views.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/execution_context_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/execution_context_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/feature_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/feature_checks.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/apple/keychain_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/apple/keychain_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/collection_change_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/collection_change_builder.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/collection_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/collection_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/external_commit_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/list_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/notification_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/notification_wrapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_accessor_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/object_accessor_impl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/object_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/primitive_list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/primitive_list_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/realm_coordinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/realm_coordinator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/results_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/results_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/transact_log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/transact_log_handler.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/weak_realm_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/impl/weak_realm_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/index_set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/object_accessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/object_schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/object_store.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/property.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/results.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/shared_realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/network_reachability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/impl/network_reachability.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/impl/sync_client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/impl/sync_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/impl/sync_metadata.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/work_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/impl/work_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/partial_sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/partial_sync.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/subscription_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/subscription_state.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/sync_config.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/sync_manager.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_permission.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/sync_permission.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/sync_session.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/sync/sync_user.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/thread_safe_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/thread_safe_reference.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/util/aligned_union.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/apple/event_loop_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/util/apple/event_loop_signal.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/atomic_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/util/atomic_shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/event_loop_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/util/event_loop_signal.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/tagged_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/util/tagged_bool.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Realm/include/util/uuid.hpp -------------------------------------------------------------------------------- /Pods/RealmSwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/LICENSE -------------------------------------------------------------------------------- /Pods/RealmSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/README.md -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Aliases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Aliases.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Error.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/LinkingObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/LinkingObjects.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/List.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Migration.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Object.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ObjectSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/ObjectSchema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ObjectiveCSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/ObjectiveCSupport.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Optional.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Property.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Realm.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/RealmCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/RealmCollection.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/RealmConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/RealmConfiguration.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Results.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Schema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SortDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/SortDescriptor.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SwiftVersion.swift: -------------------------------------------------------------------------------- 1 | let swiftLanguageVersion = "4.2.1" 2 | -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Sync.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ThreadSafeReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/ThreadSafeReference.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/RealmSwift/Util.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RealmSwift/build.sh -------------------------------------------------------------------------------- /Pods/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Result/LICENSE -------------------------------------------------------------------------------- /Pods/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Result/README.md -------------------------------------------------------------------------------- /Pods/Result/Result/AnyError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Result/Result/AnyError.swift -------------------------------------------------------------------------------- /Pods/Result/Result/NoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Result/Result/NoError.swift -------------------------------------------------------------------------------- /Pods/Result/Result/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Result/Result/Result.swift -------------------------------------------------------------------------------- /Pods/Result/Result/ResultProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Result/Result/ResultProtocol.swift -------------------------------------------------------------------------------- /Pods/RxAtomic/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxAtomic/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxAtomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxAtomic/README.md -------------------------------------------------------------------------------- /Pods/RxAtomic/RxAtomic/RxAtomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxAtomic/RxAtomic/RxAtomic.c -------------------------------------------------------------------------------- /Pods/RxAtomic/RxAtomic/include/RxAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxAtomic/RxAtomic/include/RxAtomic.h -------------------------------------------------------------------------------- /Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DeprecationWarner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/DeprecationWarner.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Deprecated.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Disposables/Disposables.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/GroupedObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/GroupedObservable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/AddRef.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Amb.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AsMaybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AsSingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/AsSingle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Buffer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Catch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/CombineLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Concat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Create.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Debounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Debounce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Debug.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Deferred.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Delay.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Dematerialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Do.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/ElementAt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Empty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Enumerated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Enumerated.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Error.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Filter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/First.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/First.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Generate.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/GroupBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/GroupBy.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Just.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Map.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Materialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Materialize.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Merge.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Multicast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Never.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Optional.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Producer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Range.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Reduce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Repeat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Sample.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Scan.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Sequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SingleAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Sink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Skip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/StartWith.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Switch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Take.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/TakeLast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/TakeUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/TakeWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Throttle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Timeout.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Timer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/ToArray.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Using.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Window.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observables/Zip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Reactive.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Completable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Traits/Completable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Maybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Traits/Maybe.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/RxSwift/RxSwift/Traits/Single.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Alamofire-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Alamofire-macOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Alamofire-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/EVReflection-Core/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/EVReflection-Core/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-iOS/Moya-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-iOS/Moya-iOS-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-iOS/Moya-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-iOS/Moya-iOS-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-iOS/Moya-iOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-iOS/Moya-iOS-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-iOS/Moya-iOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-iOS/Moya-iOS-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-iOS/Moya-iOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-iOS/Moya-iOS.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-iOS/Moya-iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-iOS/Moya-iOS.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-macOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-macOS/Moya-macOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-macOS/Moya-macOS-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-tvOS/Moya-tvOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-tvOS/Moya-tvOS-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-tvOS/Moya-tvOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-tvOS/Moya-tvOS.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya-tvOS/Moya-tvOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Moya-tvOS/Moya-tvOS.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-44Demo5/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Pods-44Demo5/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UnitTestsOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Pods-UnitTestsOSX/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UnitTestsTVOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Pods-UnitTestsTVOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UnitTestsiOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Pods-UnitTestsiOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveSwift-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/ReactiveSwift-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveSwift-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/ReactiveSwift-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Realm-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm-iOS/Realm-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Realm-iOS/Realm-iOS-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm-iOS/Realm-iOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Realm-iOS/Realm-iOS.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm-iOS/Realm-iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Realm-iOS/Realm-iOS.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Realm-macOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Realm-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm-tvOS/Realm-tvOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Realm-tvOS/Realm-tvOS-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/RealmSwift-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/RealmSwift-macOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/RealmSwift-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Result-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Result-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Result-iOS/Result-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Result-iOS/Result-iOS-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Result-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Result-macOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Result-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/Result-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/RxSwift-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/RxSwift-macOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/RxSwift-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/XMLDictionary-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/XMLDictionary-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/XMLDictionary-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/Target Support Files/XMLDictionary-tvOS/Info.plist -------------------------------------------------------------------------------- /Pods/XMLDictionary/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/XMLDictionary/LICENCE.md -------------------------------------------------------------------------------- /Pods/XMLDictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/XMLDictionary/README.md -------------------------------------------------------------------------------- /Pods/XMLDictionary/XMLDictionary/XMLDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/XMLDictionary/XMLDictionary/XMLDictionary.h -------------------------------------------------------------------------------- /Pods/XMLDictionary/XMLDictionary/XMLDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Pods/XMLDictionary/XMLDictionary/XMLDictionary.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/README.md -------------------------------------------------------------------------------- /Source/Alamofire/DataRequest+EVReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/DataRequest+EVReflectable.swift -------------------------------------------------------------------------------- /Source/Alamofire/Moya/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/Moya/README.md -------------------------------------------------------------------------------- /Source/Alamofire/Moya/ReactiveSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/Moya/ReactiveSwift/README.md -------------------------------------------------------------------------------- /Source/Alamofire/Moya/ReactiveSwift/XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/Moya/ReactiveSwift/XML/README.md -------------------------------------------------------------------------------- /Source/Alamofire/Moya/Response+EVReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/Moya/Response+EVReflectable.swift -------------------------------------------------------------------------------- /Source/Alamofire/Moya/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/Moya/RxSwift/README.md -------------------------------------------------------------------------------- /Source/Alamofire/Moya/RxSwift/XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/Moya/RxSwift/XML/README.md -------------------------------------------------------------------------------- /Source/Alamofire/Moya/XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/Moya/XML/README.md -------------------------------------------------------------------------------- /Source/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/README.md -------------------------------------------------------------------------------- /Source/Alamofire/XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Alamofire/XML/README.md -------------------------------------------------------------------------------- /Source/CloudKit/CKDataObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CloudKit/CKDataObject.swift -------------------------------------------------------------------------------- /Source/CloudKit/CKRecord+EVReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CloudKit/CKRecord+EVReflectable.swift -------------------------------------------------------------------------------- /Source/CloudKit/CKRecordID+EVCustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CloudKit/CKRecordID+EVCustomReflectable.swift -------------------------------------------------------------------------------- /Source/CloudKit/CKReference+EVCustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CloudKit/CKReference+EVCustomReflectable.swift -------------------------------------------------------------------------------- /Source/CloudKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CloudKit/README.md -------------------------------------------------------------------------------- /Source/ConversionOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/ConversionOptions.swift -------------------------------------------------------------------------------- /Source/CoreData/EVManagedObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CoreData/EVManagedObject.swift -------------------------------------------------------------------------------- /Source/CoreData/EVManagedObjectArrayExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CoreData/EVManagedObjectArrayExtension.swift -------------------------------------------------------------------------------- /Source/CoreData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/CoreData/README.md -------------------------------------------------------------------------------- /Source/DeserializationStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/DeserializationStatus.swift -------------------------------------------------------------------------------- /Source/EVArrayExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/EVArrayExtension.swift -------------------------------------------------------------------------------- /Source/EVCustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/EVCustomReflectable.swift -------------------------------------------------------------------------------- /Source/EVDictionaryExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/EVDictionaryExtension.swift -------------------------------------------------------------------------------- /Source/EVObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/EVObject.swift -------------------------------------------------------------------------------- /Source/EVReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/EVReflectable.swift -------------------------------------------------------------------------------- /Source/EVReflection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/EVReflection.swift -------------------------------------------------------------------------------- /Source/EVWorkaroundHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/EVWorkaroundHelpers.swift -------------------------------------------------------------------------------- /Source/PrintOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/PrintOptions.swift -------------------------------------------------------------------------------- /Source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/README.md -------------------------------------------------------------------------------- /Source/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Realm/README.md -------------------------------------------------------------------------------- /Source/Realm/RealmListEVCustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Realm/RealmListEVCustomReflectable.swift -------------------------------------------------------------------------------- /Source/Realm/RealmObjectEVCustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Realm/RealmObjectEVCustomReflectable.swift -------------------------------------------------------------------------------- /Source/Realm/RealmObjectExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Realm/RealmObjectExtension.swift -------------------------------------------------------------------------------- /Source/Realm/RealmOptionalEVCustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/Realm/RealmOptionalEVCustomReflectable.swift -------------------------------------------------------------------------------- /Source/XML/EVReflectable+XMLDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/XML/EVReflectable+XMLDictionary.swift -------------------------------------------------------------------------------- /Source/XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/XML/README.md -------------------------------------------------------------------------------- /Source/XML/Xml2Dictionary.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/Source/XML/Xml2Dictionary.podspec -------------------------------------------------------------------------------- /UnitTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/.gitignore -------------------------------------------------------------------------------- /UnitTests/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/.swiftlint.yml -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/AlamofireExternalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/AlamofireExternalTests.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/AlamofireTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/AlamofireTests.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/ArrayConversionIssue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/ArrayConversionIssue.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/ArrayConversionIssue_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/ArrayConversionIssue_json -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/NestedGenericsIssue25.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/NestedGenericsIssue25.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/NestedGenericsIssue25_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/NestedGenericsIssue25_json -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/sample_array_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/sample_array_json -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/sample_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/sample_json -------------------------------------------------------------------------------- /UnitTests/AlamofireTests/sample_users_array_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireTests/sample_users_array_json -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/AlamofireXml2Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/AlamofireXml2Tests.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/AlamofireXml3Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/AlamofireXml3Tests.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/AlamofireXmlTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/AlamofireXmlTests.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/Issue4Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/Issue4Test.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/Issue4_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/Issue4_xml -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/Issue6Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/Issue6Test.swift -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/Issue6_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/Issue6_xml -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/sampl2_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/sampl2_xml -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/sample3_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/sample3_xml -------------------------------------------------------------------------------- /UnitTests/AlamofireXmlTests/sample_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/AlamofireXmlTests/sample_xml -------------------------------------------------------------------------------- /UnitTests/CloudKit/CKAsset+UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/CloudKit/CKAsset+UIImage.swift -------------------------------------------------------------------------------- /UnitTests/CloudKit/CloudKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/CloudKit/CloudKitTests.swift -------------------------------------------------------------------------------- /UnitTests/CoreDataTests/CDUser+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/CoreDataTests/CDUser+CoreDataClass.swift -------------------------------------------------------------------------------- /UnitTests/CoreDataTests/CoreDataStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/CoreDataTests/CoreDataStack.swift -------------------------------------------------------------------------------- /UnitTests/CoreDataTests/CoreDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/CoreDataTests/CoreDataTests.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTestData.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVObjectDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVObjectDescription.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue102.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue102.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue107.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue107.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue110.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue110.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue114b.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue114b.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue124.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue124.plist -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue124.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue124.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue141.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue141.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue145.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue145.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue159.json -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue159.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue159.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue186.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue186.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue197.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue197.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue202.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue202.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue204.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue204.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue213.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue213.json -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue213.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue213.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue223.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue223.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue276.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue276.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue285.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue285.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue292.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue292.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue84.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue84.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue86.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue86.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue88.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue88.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue91.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue91.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue96.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue96.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssue99.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssue99.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssueAF30.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssueAF30.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssueAF39.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssueAF39.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssueX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssueX.json -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionIssueX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionIssueX.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionJsonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionJsonTests.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionTests.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/EVReflectionTests2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/EVReflectionTests2.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/TestObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/TestObjects.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/WorkaroundEnumTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/WorkaroundEnumTest.swift -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/ios-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/ios-Info.plist -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/osx-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/osx-Info.plist -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/sample.json -------------------------------------------------------------------------------- /UnitTests/EVReflectionTests/tvos-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/EVReflectionTests/tvos-Info.plist -------------------------------------------------------------------------------- /UnitTests/MoyaTests/MoyaRxSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/MoyaTests/MoyaRxSwiftTests.swift -------------------------------------------------------------------------------- /UnitTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/README.md -------------------------------------------------------------------------------- /UnitTests/RealmTestIssue219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/RealmTestIssue219.json -------------------------------------------------------------------------------- /UnitTests/RealmTestIssue219.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/RealmTestIssue219.swift -------------------------------------------------------------------------------- /UnitTests/RealmTestIssue221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/RealmTestIssue221.json -------------------------------------------------------------------------------- /UnitTests/RealmTestIssue221.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/RealmTestIssue221.swift -------------------------------------------------------------------------------- /UnitTests/RealmTests/RealmTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/RealmTests/RealmTests.swift -------------------------------------------------------------------------------- /UnitTests/UnitTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/UnitTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UnitTests/coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/coverage.png -------------------------------------------------------------------------------- /UnitTests/nestedArrayData_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evermeer/EVReflection/HEAD/UnitTests/nestedArrayData_json --------------------------------------------------------------------------------