├── .gitignore ├── Examples ├── Chat │ ├── Chat.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── Chat │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ChatApp.swift │ │ ├── ChatView.swift │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── ChatTests │ │ └── ChatTests.swift │ └── README.md ├── Cocktail │ ├── Cocktail.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Cocktail.xcscheme │ ├── Cocktail │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── CocktailApp.swift │ │ ├── CocktailDetailsView.swift │ │ ├── CocktailSearchView.swift │ │ ├── CocktailService.swift │ │ ├── CoctailAPI.swift │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── CocktailTests │ │ ├── CocktailDetailsTests.swift │ │ └── CocktailSearchTests.swift │ └── README.md ├── EngineeringMode+Coordinator+Modules │ ├── EngineeringMode.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Settings.xcscheme │ ├── EngineeringMode │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── EngineeringMode │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── EngineeringMode │ │ │ │ │ ├── EngineeringModeCoordinator.swift │ │ │ │ │ └── EngineeringModeView.swift │ │ │ └── Tests │ │ │ │ └── EngineeringModeTests │ │ │ │ └── EngineeringModeTests.swift │ │ ├── Info.plist │ │ ├── SceneDelegate.swift │ │ ├── SettingsCoordinator.swift │ │ └── SettingsView.swift │ └── README.md ├── Form │ ├── Form.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── Form │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── FormApp.swift │ │ ├── FormView.swift │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── README.md └── UIKitApp │ ├── README.md │ ├── UIKitApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved │ └── UIKitApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── Eazy │ ├── Action.swift │ ├── Debug.swift │ ├── Extensions │ ├── Equatable.swift │ ├── Publisher.swift │ └── UIKit.swift │ ├── Hooks.swift │ ├── Interactor.swift │ └── Store.swift ├── Tests └── EazyTests │ ├── EazyTests.swift │ └── UIKitTests.swift └── docs ├── Eazy.doccarchive ├── css │ ├── documentation-topic.de084985.css │ ├── documentation-topic~topic~tutorials-overview.67b822e0.css │ ├── index.47bc740e.css │ ├── topic.2eb01958.css │ └── tutorials-overview.8754eb09.css ├── data │ └── documentation │ │ ├── eazy.json │ │ └── eazy │ │ ├── actionable.json │ │ ├── actionable │ │ ├── action.json │ │ ├── onaction(_:store:).json │ │ └── state.json │ │ ├── animationoption.json │ │ ├── animationoption │ │ ├── custom(_:).json │ │ ├── default.json │ │ └── none.json │ │ ├── cancellableaction.json │ │ ├── cancellableaction │ │ └── cancelidentifier.json │ │ ├── debugstore.json │ │ ├── debugstore │ │ ├── disablelogging().json │ │ ├── enablelogging(_:).json │ │ ├── filteroption.json │ │ ├── filteroption │ │ │ ├── exclude(_:).json │ │ │ └── include(_:).json │ │ └── print.json │ │ ├── emptyaction.json │ │ ├── emptyaction │ │ ├── !=(_:_:).json │ │ ├── equatable-implementations.json │ │ └── with(setter:).json │ │ ├── hookable.json │ │ ├── hookable │ │ ├── action.json │ │ ├── hook.json │ │ ├── publisher(for:store:).json │ │ └── state.json │ │ ├── hookpublisher.json │ │ ├── hookpublisher │ │ ├── allsatisfy(_:).json │ │ ├── append(_:).json │ │ ├── assertnofailure(_:file:line:).json │ │ ├── assign(to:).json │ │ ├── assign(to:on:).json │ │ ├── assign(to:using:animation:forceupdate:).json │ │ ├── assign(toaction:using:)-3eh1k.json │ │ ├── assign(toaction:using:)-52rlc.json │ │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:).json │ │ ├── breakpointonerror().json │ │ ├── buffer(size:prefetch:whenfull:).json │ │ ├── catch(_:).json │ │ ├── collect().json │ │ ├── collect(_:).json │ │ ├── collect(_:options:).json │ │ ├── combinelatest(_:).json │ │ ├── combinelatest(_:_:)-3cv2e.json │ │ ├── combinelatest(_:_:)-633fu.json │ │ ├── combinelatest(_:_:_:)-61lgu.json │ │ ├── combinelatest(_:_:_:)-k1dq.json │ │ ├── combinelatest(_:_:_:_:).json │ │ ├── compactmap(_:).json │ │ ├── contains(_:).json │ │ ├── contains(where:).json │ │ ├── count().json │ │ ├── debounce(for:scheduler:options:).json │ │ ├── decode(type:decoder:).json │ │ ├── delay(for:tolerance:scheduler:options:).json │ │ ├── drop(untiloutputfrom:).json │ │ ├── drop(while:).json │ │ ├── dropfirst(_:).json │ │ ├── encode(encoder:).json │ │ ├── erasetoanypublisher().json │ │ ├── failure.json │ │ ├── filter(_:).json │ │ ├── first().json │ │ ├── first(timeout:scheduler:).json │ │ ├── first(where:).json │ │ ├── flatmap(maxpublishers:_:)-2ldrr.json │ │ ├── flatmap(maxpublishers:_:)-2mvkb.json │ │ ├── flatmap(maxpublishers:_:)-3g13k.json │ │ ├── flatmap(maxpublishers:_:)-4546l.json │ │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:).json │ │ ├── ignoreoutput().json │ │ ├── init(_:).json │ │ ├── last().json │ │ ├── last(where:).json │ │ ├── log(_:).json │ │ ├── makeconnectable().json │ │ ├── map(_:)-45s85.json │ │ ├── map(_:)-5adwv.json │ │ ├── map(_:_:).json │ │ ├── map(_:_:_:).json │ │ ├── maperror(_:).json │ │ ├── max().json │ │ ├── max(by:).json │ │ ├── measureinterval(using:options:).json │ │ ├── merge(with:).json │ │ ├── merge(with:_:).json │ │ ├── merge(with:_:_:).json │ │ ├── merge(with:_:_:_:).json │ │ ├── merge(with:_:_:_:_:).json │ │ ├── merge(with:_:_:_:_:_:).json │ │ ├── merge(with:_:_:_:_:_:_:).json │ │ ├── min().json │ │ ├── min(by:).json │ │ ├── multicast(_:).json │ │ ├── multicast(subject:).json │ │ ├── output(at:).json │ │ ├── output(in:).json │ │ ├── output.json │ │ ├── prefix(_:).json │ │ ├── prefix(untiloutputfrom:).json │ │ ├── prefix(while:).json │ │ ├── prepend(_:).json │ │ ├── print(_:to:).json │ │ ├── publisher-implementations.json │ │ ├── receive(on:options:).json │ │ ├── receive(subscriber:).json │ │ ├── reduce(_:_:).json │ │ ├── removeduplicates().json │ │ ├── removeduplicates(by:).json │ │ ├── replaceempty(with:).json │ │ ├── replaceerror(with:).json │ │ ├── replacenil(with:).json │ │ ├── retry(_:).json │ │ ├── scan(_:_:).json │ │ ├── setfailuretype(to:).json │ │ ├── share().json │ │ ├── sink(receivecompletion:receivevalue:).json │ │ ├── sink(receivevalue:).json │ │ ├── subscribe(_:)-7eg9n.json │ │ ├── subscribe(_:)-cxk9.json │ │ ├── subscribe(on:options:).json │ │ ├── switchtolatest().json │ │ ├── throttle(for:scheduler:latest:).json │ │ ├── timeout(_:scheduler:options:customerror:).json │ │ ├── tryallsatisfy(_:).json │ │ ├── trycatch(_:).json │ │ ├── trycompactmap(_:).json │ │ ├── trycontains(where:).json │ │ ├── trydrop(while:).json │ │ ├── tryfilter(_:).json │ │ ├── tryfirst(where:).json │ │ ├── trylast(where:).json │ │ ├── trymap(_:).json │ │ ├── trymax(by:).json │ │ ├── trymin(by:).json │ │ ├── tryprefix(while:).json │ │ ├── tryreduce(_:_:).json │ │ ├── tryremoveduplicates(by:).json │ │ ├── tryscan(_:_:).json │ │ ├── values-5f3ot.json │ │ ├── values-d58k.json │ │ ├── zip(_:).json │ │ ├── zip(_:_:)-9y7qc.json │ │ ├── zip(_:_:)-d1hm.json │ │ ├── zip(_:_:_:)-2ld1h.json │ │ ├── zip(_:_:_:)-3yrcq.json │ │ └── zip(_:_:_:_:).json │ │ ├── interactor.json │ │ ├── modelservice.json │ │ ├── modelservice │ │ ├── objectwillchange.json │ │ ├── observableobject-implementations.json │ │ ├── publisher.json │ │ ├── publisherprevious.json │ │ ├── snapshot.json │ │ ├── subscript(dynamicmember:)-1iho0.json │ │ └── subscript(dynamicmember:)-3jmpf.json │ │ ├── mutatingstore.json │ │ ├── mutatingstore │ │ ├── cancel(_:).json │ │ ├── dispatch(_:)-33mt3.json │ │ ├── dispatch(_:)-39wtz.json │ │ ├── publisher.json │ │ ├── set(_:_:forceupdate:).json │ │ ├── state.json │ │ ├── subscript(dynamicmember:)-6knfo.json │ │ └── subscript(dynamicmember:)-8rh1w.json │ │ ├── statepublisher.json │ │ ├── statepublisher │ │ ├── allsatisfy(_:).json │ │ ├── append(_:).json │ │ ├── assertnofailure(_:file:line:).json │ │ ├── assign(to:).json │ │ ├── assign(to:on:).json │ │ ├── assign(to:using:animation:forceupdate:).json │ │ ├── assign(toaction:using:)-1pxpq.json │ │ ├── assign(toaction:using:)-7ob0t.json │ │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:).json │ │ ├── breakpointonerror().json │ │ ├── buffer(size:prefetch:whenfull:).json │ │ ├── catch(_:).json │ │ ├── collect().json │ │ ├── collect(_:).json │ │ ├── collect(_:options:).json │ │ ├── combinelatest(_:).json │ │ ├── combinelatest(_:_:)-27zfg.json │ │ ├── combinelatest(_:_:)-4zsqv.json │ │ ├── combinelatest(_:_:_:)-3r61c.json │ │ ├── combinelatest(_:_:_:)-9udho.json │ │ ├── combinelatest(_:_:_:_:).json │ │ ├── compactmap(_:).json │ │ ├── contains(_:).json │ │ ├── contains(where:).json │ │ ├── count().json │ │ ├── debounce(for:scheduler:options:).json │ │ ├── decode(type:decoder:).json │ │ ├── delay(for:tolerance:scheduler:options:).json │ │ ├── drop(untiloutputfrom:).json │ │ ├── drop(while:).json │ │ ├── dropfirst(_:).json │ │ ├── encode(encoder:).json │ │ ├── erasetoanypublisher().json │ │ ├── failure.json │ │ ├── filter(_:).json │ │ ├── first().json │ │ ├── first(timeout:scheduler:).json │ │ ├── first(where:).json │ │ ├── flatmap(maxpublishers:_:)-9hsjb.json │ │ ├── flatmap(maxpublishers:_:)-9tao2.json │ │ ├── flatmap(maxpublishers:_:)-9z9j2.json │ │ ├── flatmap(maxpublishers:_:)-qa2i.json │ │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:).json │ │ ├── ignoreoutput().json │ │ ├── last().json │ │ ├── last(where:).json │ │ ├── log(_:).json │ │ ├── makeconnectable().json │ │ ├── map(_:)-5x3o0.json │ │ ├── map(_:)-6accw.json │ │ ├── map(_:_:).json │ │ ├── map(_:_:_:).json │ │ ├── maperror(_:).json │ │ ├── max().json │ │ ├── max(by:).json │ │ ├── measureinterval(using:options:).json │ │ ├── merge(with:).json │ │ ├── merge(with:_:).json │ │ ├── merge(with:_:_:).json │ │ ├── merge(with:_:_:_:).json │ │ ├── merge(with:_:_:_:_:).json │ │ ├── merge(with:_:_:_:_:_:).json │ │ ├── merge(with:_:_:_:_:_:_:).json │ │ ├── min().json │ │ ├── min(by:).json │ │ ├── multicast(_:).json │ │ ├── multicast(subject:).json │ │ ├── output(at:).json │ │ ├── output(in:).json │ │ ├── output.json │ │ ├── prefix(_:).json │ │ ├── prefix(untiloutputfrom:).json │ │ ├── prefix(while:).json │ │ ├── prepend(_:).json │ │ ├── print(_:to:).json │ │ ├── publisher(for:).json │ │ ├── publisher-implementations.json │ │ ├── receive(on:options:).json │ │ ├── receive(subscriber:).json │ │ ├── reduce(_:_:).json │ │ ├── removeduplicates().json │ │ ├── removeduplicates(by:).json │ │ ├── replaceempty(with:).json │ │ ├── replaceerror(with:).json │ │ ├── replacenil(with:).json │ │ ├── retry(_:).json │ │ ├── scan(_:_:).json │ │ ├── setfailuretype(to:).json │ │ ├── share().json │ │ ├── sink(receivecompletion:receivevalue:).json │ │ ├── sink(receivevalue:).json │ │ ├── subscribe(_:)-1j7nw.json │ │ ├── subscribe(_:)-2wkvo.json │ │ ├── subscribe(on:options:).json │ │ ├── subscript(dynamicmember:).json │ │ ├── switchtolatest().json │ │ ├── throttle(for:scheduler:latest:).json │ │ ├── timeout(_:scheduler:options:customerror:).json │ │ ├── tryallsatisfy(_:).json │ │ ├── trycatch(_:).json │ │ ├── trycompactmap(_:).json │ │ ├── trycontains(where:).json │ │ ├── trydrop(while:).json │ │ ├── tryfilter(_:).json │ │ ├── tryfirst(where:).json │ │ ├── trylast(where:).json │ │ ├── trymap(_:).json │ │ ├── trymax(by:).json │ │ ├── trymin(by:).json │ │ ├── tryprefix(while:).json │ │ ├── tryreduce(_:_:).json │ │ ├── tryremoveduplicates(by:).json │ │ ├── tryscan(_:_:).json │ │ ├── values-5rdy5.json │ │ ├── values-7hlmo.json │ │ ├── zip(_:).json │ │ ├── zip(_:_:)-2nwqf.json │ │ ├── zip(_:_:)-93umj.json │ │ ├── zip(_:_:_:)-1get2.json │ │ ├── zip(_:_:_:)-412rq.json │ │ └── zip(_:_:_:_:).json │ │ ├── statestore.json │ │ ├── statestore │ │ ├── dynamicproperty-implementations.json │ │ ├── init(wrappedvalue:).json │ │ ├── projectedvalue.json │ │ ├── update().json │ │ └── wrappedvalue.json │ │ ├── store.json │ │ ├── store │ │ ├── binder-swift.property.json │ │ ├── binder-swift.struct.json │ │ ├── binder-swift.struct │ │ │ ├── binding(get:action:).json │ │ │ └── subscript(dynamicmember:).json │ │ ├── cancel(_:).json │ │ ├── deactivehooks().json │ │ ├── dispatch(_:)-4tlzm.json │ │ ├── dispatch(_:)-87kw7.json │ │ ├── init(state:).json │ │ ├── init(state:actionable:).json │ │ ├── init(state:hookable:).json │ │ ├── init(state:interactor:).json │ │ ├── objectwillchange.json │ │ ├── observableobject-implementations.json │ │ ├── publisher.json │ │ ├── state.json │ │ └── subscript(dynamicmember:).json │ │ ├── teststore.json │ │ └── teststore │ │ ├── didtrigger(_:)-3gl57.json │ │ ├── didtrigger(_:)-69q9s.json │ │ ├── didtriggerhook.json │ │ ├── init(state:).json │ │ ├── init(state:interactor:).json │ │ ├── stateupdates.json │ │ ├── subscript(dynamicmember:)-17kqn.json │ │ ├── subscript(dynamicmember:)-8c7am.json │ │ ├── testhook(_:trigger:state:interactor:timeout:).json │ │ └── triggeredactions.json ├── favicon.ico ├── favicon.svg ├── img │ ├── added-icon.d6f7e47d.svg │ ├── deprecated-icon.015b4f17.svg │ └── modified-icon.f496e73d.svg ├── index.html ├── index │ ├── availability.index │ ├── data.mdb │ └── navigator.index ├── js │ ├── chunk-2d0d3105.cd72cc8e.js │ ├── chunk-vendors.00bf82af.js │ ├── documentation-topic.f5df163e.js │ ├── documentation-topic~topic~tutorials-overview.06df3b46.js │ ├── highlight-js-bash.1b52852f.js │ ├── highlight-js-c.d1db3f17.js │ ├── highlight-js-cpp.eaddddbe.js │ ├── highlight-js-css.75eab1fe.js │ ├── highlight-js-custom-markdown.7cffc4b3.js │ ├── highlight-js-custom-swift.52388c22.js │ ├── highlight-js-diff.62d66733.js │ ├── highlight-js-http.163e45b6.js │ ├── highlight-js-java.8326d9d8.js │ ├── highlight-js-javascript.acb8a8eb.js │ ├── highlight-js-json.471128d2.js │ ├── highlight-js-llvm.6100b125.js │ ├── highlight-js-markdown.90077643.js │ ├── highlight-js-objectivec.bcdf5156.js │ ├── highlight-js-perl.757d7b6f.js │ ├── highlight-js-php.cc8d6c27.js │ ├── highlight-js-python.c214ed92.js │ ├── highlight-js-ruby.f889d392.js │ ├── highlight-js-scss.62ee18da.js │ ├── highlight-js-shell.dd7f411f.js │ ├── highlight-js-swift.84f3e88c.js │ ├── highlight-js-xml.9c3688c7.js │ ├── index.4dfda72c.js │ ├── topic.d56fc284.js │ └── tutorials-overview.0dfedc70.js ├── metadata.json └── theme-settings.json ├── css ├── documentation-topic.de084985.css ├── documentation-topic~topic~tutorials-overview.67b822e0.css ├── index.47bc740e.css ├── topic.2eb01958.css └── tutorials-overview.8754eb09.css ├── data └── documentation │ ├── eazy.json │ └── eazy │ ├── actionable.json │ ├── actionable │ ├── action.json │ ├── onaction(_:store:).json │ └── state.json │ ├── animationoption.json │ ├── animationoption │ ├── custom(_:).json │ ├── default.json │ └── none.json │ ├── cancellableaction.json │ ├── cancellableaction │ └── cancelidentifier.json │ ├── debugstore.json │ ├── debugstore │ ├── disablelogging().json │ ├── enablelogging(_:).json │ ├── filteroption.json │ ├── filteroption │ │ ├── exclude(_:).json │ │ └── include(_:).json │ └── print.json │ ├── emptyaction.json │ ├── emptyaction │ ├── !=(_:_:).json │ ├── equatable-implementations.json │ └── with(setter:).json │ ├── hookable.json │ ├── hookable │ ├── action.json │ ├── hook.json │ ├── publisher(for:store:).json │ └── state.json │ ├── hookpublisher.json │ ├── hookpublisher │ ├── allsatisfy(_:).json │ ├── append(_:).json │ ├── assertnofailure(_:file:line:).json │ ├── assign(to:).json │ ├── assign(to:on:).json │ ├── assign(to:using:animation:forceupdate:).json │ ├── assign(toaction:using:)-3eh1k.json │ ├── assign(toaction:using:)-52rlc.json │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:).json │ ├── breakpointonerror().json │ ├── buffer(size:prefetch:whenfull:).json │ ├── catch(_:).json │ ├── collect().json │ ├── collect(_:).json │ ├── collect(_:options:).json │ ├── combinelatest(_:).json │ ├── combinelatest(_:_:)-3cv2e.json │ ├── combinelatest(_:_:)-633fu.json │ ├── combinelatest(_:_:_:)-61lgu.json │ ├── combinelatest(_:_:_:)-k1dq.json │ ├── combinelatest(_:_:_:_:).json │ ├── compactmap(_:).json │ ├── contains(_:).json │ ├── contains(where:).json │ ├── count().json │ ├── debounce(for:scheduler:options:).json │ ├── decode(type:decoder:).json │ ├── delay(for:tolerance:scheduler:options:).json │ ├── drop(untiloutputfrom:).json │ ├── drop(while:).json │ ├── dropfirst(_:).json │ ├── encode(encoder:).json │ ├── erasetoanypublisher().json │ ├── failure.json │ ├── filter(_:).json │ ├── first().json │ ├── first(timeout:scheduler:).json │ ├── first(where:).json │ ├── flatmap(maxpublishers:_:)-2ldrr.json │ ├── flatmap(maxpublishers:_:)-2mvkb.json │ ├── flatmap(maxpublishers:_:)-3g13k.json │ ├── flatmap(maxpublishers:_:)-4546l.json │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:).json │ ├── ignoreoutput().json │ ├── init(_:).json │ ├── last().json │ ├── last(where:).json │ ├── log(_:).json │ ├── makeconnectable().json │ ├── map(_:)-45s85.json │ ├── map(_:)-5adwv.json │ ├── map(_:_:).json │ ├── map(_:_:_:).json │ ├── maperror(_:).json │ ├── max().json │ ├── max(by:).json │ ├── measureinterval(using:options:).json │ ├── merge(with:).json │ ├── merge(with:_:).json │ ├── merge(with:_:_:).json │ ├── merge(with:_:_:_:).json │ ├── merge(with:_:_:_:_:).json │ ├── merge(with:_:_:_:_:_:).json │ ├── merge(with:_:_:_:_:_:_:).json │ ├── min().json │ ├── min(by:).json │ ├── multicast(_:).json │ ├── multicast(subject:).json │ ├── output(at:).json │ ├── output(in:).json │ ├── output.json │ ├── prefix(_:).json │ ├── prefix(untiloutputfrom:).json │ ├── prefix(while:).json │ ├── prepend(_:).json │ ├── print(_:to:).json │ ├── publisher-implementations.json │ ├── receive(on:options:).json │ ├── receive(subscriber:).json │ ├── reduce(_:_:).json │ ├── removeduplicates().json │ ├── removeduplicates(by:).json │ ├── replaceempty(with:).json │ ├── replaceerror(with:).json │ ├── replacenil(with:).json │ ├── retry(_:).json │ ├── scan(_:_:).json │ ├── setfailuretype(to:).json │ ├── share().json │ ├── sink(receivecompletion:receivevalue:).json │ ├── sink(receivevalue:).json │ ├── subscribe(_:)-7eg9n.json │ ├── subscribe(_:)-cxk9.json │ ├── subscribe(on:options:).json │ ├── switchtolatest().json │ ├── throttle(for:scheduler:latest:).json │ ├── timeout(_:scheduler:options:customerror:).json │ ├── tryallsatisfy(_:).json │ ├── trycatch(_:).json │ ├── trycompactmap(_:).json │ ├── trycontains(where:).json │ ├── trydrop(while:).json │ ├── tryfilter(_:).json │ ├── tryfirst(where:).json │ ├── trylast(where:).json │ ├── trymap(_:).json │ ├── trymax(by:).json │ ├── trymin(by:).json │ ├── tryprefix(while:).json │ ├── tryreduce(_:_:).json │ ├── tryremoveduplicates(by:).json │ ├── tryscan(_:_:).json │ ├── values-5f3ot.json │ ├── values-d58k.json │ ├── zip(_:).json │ ├── zip(_:_:)-9y7qc.json │ ├── zip(_:_:)-d1hm.json │ ├── zip(_:_:_:)-2ld1h.json │ ├── zip(_:_:_:)-3yrcq.json │ └── zip(_:_:_:_:).json │ ├── interactor.json │ ├── modelservice.json │ ├── modelservice │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── publisher.json │ ├── publisherprevious.json │ ├── snapshot.json │ ├── subscript(dynamicmember:)-1iho0.json │ └── subscript(dynamicmember:)-3jmpf.json │ ├── mutatingstore.json │ ├── mutatingstore │ ├── cancel(_:).json │ ├── dispatch(_:)-33mt3.json │ ├── dispatch(_:)-39wtz.json │ ├── publisher.json │ ├── set(_:_:forceupdate:).json │ ├── state.json │ ├── subscript(dynamicmember:)-6knfo.json │ └── subscript(dynamicmember:)-8rh1w.json │ ├── statepublisher.json │ ├── statepublisher │ ├── allsatisfy(_:).json │ ├── append(_:).json │ ├── assertnofailure(_:file:line:).json │ ├── assign(to:).json │ ├── assign(to:on:).json │ ├── assign(to:using:animation:forceupdate:).json │ ├── assign(toaction:using:)-1pxpq.json │ ├── assign(toaction:using:)-7ob0t.json │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:).json │ ├── breakpointonerror().json │ ├── buffer(size:prefetch:whenfull:).json │ ├── catch(_:).json │ ├── collect().json │ ├── collect(_:).json │ ├── collect(_:options:).json │ ├── combinelatest(_:).json │ ├── combinelatest(_:_:)-27zfg.json │ ├── combinelatest(_:_:)-4zsqv.json │ ├── combinelatest(_:_:_:)-3r61c.json │ ├── combinelatest(_:_:_:)-9udho.json │ ├── combinelatest(_:_:_:_:).json │ ├── compactmap(_:).json │ ├── contains(_:).json │ ├── contains(where:).json │ ├── count().json │ ├── debounce(for:scheduler:options:).json │ ├── decode(type:decoder:).json │ ├── delay(for:tolerance:scheduler:options:).json │ ├── drop(untiloutputfrom:).json │ ├── drop(while:).json │ ├── dropfirst(_:).json │ ├── encode(encoder:).json │ ├── erasetoanypublisher().json │ ├── failure.json │ ├── filter(_:).json │ ├── first().json │ ├── first(timeout:scheduler:).json │ ├── first(where:).json │ ├── flatmap(maxpublishers:_:)-9hsjb.json │ ├── flatmap(maxpublishers:_:)-9tao2.json │ ├── flatmap(maxpublishers:_:)-9z9j2.json │ ├── flatmap(maxpublishers:_:)-qa2i.json │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:).json │ ├── ignoreoutput().json │ ├── last().json │ ├── last(where:).json │ ├── log(_:).json │ ├── makeconnectable().json │ ├── map(_:)-5x3o0.json │ ├── map(_:)-6accw.json │ ├── map(_:_:).json │ ├── map(_:_:_:).json │ ├── maperror(_:).json │ ├── max().json │ ├── max(by:).json │ ├── measureinterval(using:options:).json │ ├── merge(with:).json │ ├── merge(with:_:).json │ ├── merge(with:_:_:).json │ ├── merge(with:_:_:_:).json │ ├── merge(with:_:_:_:_:).json │ ├── merge(with:_:_:_:_:_:).json │ ├── merge(with:_:_:_:_:_:_:).json │ ├── min().json │ ├── min(by:).json │ ├── multicast(_:).json │ ├── multicast(subject:).json │ ├── output(at:).json │ ├── output(in:).json │ ├── output.json │ ├── prefix(_:).json │ ├── prefix(untiloutputfrom:).json │ ├── prefix(while:).json │ ├── prepend(_:).json │ ├── print(_:to:).json │ ├── publisher(for:).json │ ├── publisher-implementations.json │ ├── receive(on:options:).json │ ├── receive(subscriber:).json │ ├── reduce(_:_:).json │ ├── removeduplicates().json │ ├── removeduplicates(by:).json │ ├── replaceempty(with:).json │ ├── replaceerror(with:).json │ ├── replacenil(with:).json │ ├── retry(_:).json │ ├── scan(_:_:).json │ ├── setfailuretype(to:).json │ ├── share().json │ ├── sink(receivecompletion:receivevalue:).json │ ├── sink(receivevalue:).json │ ├── subscribe(_:)-1j7nw.json │ ├── subscribe(_:)-2wkvo.json │ ├── subscribe(on:options:).json │ ├── subscript(dynamicmember:).json │ ├── switchtolatest().json │ ├── throttle(for:scheduler:latest:).json │ ├── timeout(_:scheduler:options:customerror:).json │ ├── tryallsatisfy(_:).json │ ├── trycatch(_:).json │ ├── trycompactmap(_:).json │ ├── trycontains(where:).json │ ├── trydrop(while:).json │ ├── tryfilter(_:).json │ ├── tryfirst(where:).json │ ├── trylast(where:).json │ ├── trymap(_:).json │ ├── trymax(by:).json │ ├── trymin(by:).json │ ├── tryprefix(while:).json │ ├── tryreduce(_:_:).json │ ├── tryremoveduplicates(by:).json │ ├── tryscan(_:_:).json │ ├── values-5rdy5.json │ ├── values-7hlmo.json │ ├── zip(_:).json │ ├── zip(_:_:)-2nwqf.json │ ├── zip(_:_:)-93umj.json │ ├── zip(_:_:_:)-1get2.json │ ├── zip(_:_:_:)-412rq.json │ └── zip(_:_:_:_:).json │ ├── statestore.json │ ├── statestore │ ├── dynamicproperty-implementations.json │ ├── init(wrappedvalue:).json │ ├── projectedvalue.json │ ├── update().json │ └── wrappedvalue.json │ ├── store.json │ ├── store │ ├── binder-swift.property.json │ ├── binder-swift.struct.json │ ├── binder-swift.struct │ │ ├── binding(get:action:).json │ │ └── subscript(dynamicmember:).json │ ├── cancel(_:).json │ ├── deactivehooks().json │ ├── dispatch(_:)-4tlzm.json │ ├── dispatch(_:)-87kw7.json │ ├── init(state:).json │ ├── init(state:actionable:).json │ ├── init(state:hookable:).json │ ├── init(state:interactor:).json │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── publisher.json │ ├── state.json │ └── subscript(dynamicmember:).json │ ├── teststore.json │ └── teststore │ ├── didtrigger(_:)-3gl57.json │ ├── didtrigger(_:)-69q9s.json │ ├── didtriggerhook.json │ ├── init(state:).json │ ├── init(state:interactor:).json │ ├── stateupdates.json │ ├── subscript(dynamicmember:)-17kqn.json │ ├── subscript(dynamicmember:)-8c7am.json │ ├── testhook(_:trigger:state:interactor:timeout:).json │ └── triggeredactions.json ├── documentation └── eazy │ ├── actionable │ ├── action │ │ └── index.html │ ├── index.html │ ├── onaction(_:store:) │ │ └── index.html │ └── state │ │ └── index.html │ ├── animationoption │ ├── custom(_:) │ │ └── index.html │ ├── default │ │ └── index.html │ ├── index.html │ └── none │ │ └── index.html │ ├── cancellableaction │ ├── cancelidentifier │ │ └── index.html │ └── index.html │ ├── debugstore │ ├── disablelogging() │ │ └── index.html │ ├── enablelogging(_:) │ │ └── index.html │ ├── filteroption │ │ ├── exclude(_:) │ │ │ └── index.html │ │ ├── include(_:) │ │ │ └── index.html │ │ └── index.html │ ├── index.html │ └── print │ │ └── index.html │ ├── emptyaction │ ├── !=(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ └── with(setter:) │ │ └── index.html │ ├── hookable │ ├── action │ │ └── index.html │ ├── hook │ │ └── index.html │ ├── index.html │ ├── publisher(for:store:) │ │ └── index.html │ └── state │ │ └── index.html │ ├── hookpublisher │ ├── allsatisfy(_:) │ │ └── index.html │ ├── append(_:) │ │ └── index.html │ ├── assertnofailure(_:file:line:) │ │ └── index.html │ ├── assign(to:) │ │ └── index.html │ ├── assign(to:on:) │ │ └── index.html │ ├── assign(to:using:animation:forceupdate:) │ │ └── index.html │ ├── assign(toaction:using:)-3eh1k │ │ └── index.html │ ├── assign(toaction:using:)-52rlc │ │ └── index.html │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:) │ │ └── index.html │ ├── breakpointonerror() │ │ └── index.html │ ├── buffer(size:prefetch:whenfull:) │ │ └── index.html │ ├── catch(_:) │ │ └── index.html │ ├── collect() │ │ └── index.html │ ├── collect(_:) │ │ └── index.html │ ├── collect(_:options:) │ │ └── index.html │ ├── combinelatest(_:) │ │ └── index.html │ ├── combinelatest(_:_:)-3cv2e │ │ └── index.html │ ├── combinelatest(_:_:)-633fu │ │ └── index.html │ ├── combinelatest(_:_:_:)-61lgu │ │ └── index.html │ ├── combinelatest(_:_:_:)-k1dq │ │ └── index.html │ ├── combinelatest(_:_:_:_:) │ │ └── index.html │ ├── compactmap(_:) │ │ └── index.html │ ├── contains(_:) │ │ └── index.html │ ├── contains(where:) │ │ └── index.html │ ├── count() │ │ └── index.html │ ├── debounce(for:scheduler:options:) │ │ └── index.html │ ├── decode(type:decoder:) │ │ └── index.html │ ├── delay(for:tolerance:scheduler:options:) │ │ └── index.html │ ├── drop(untiloutputfrom:) │ │ └── index.html │ ├── drop(while:) │ │ └── index.html │ ├── dropfirst(_:) │ │ └── index.html │ ├── encode(encoder:) │ │ └── index.html │ ├── erasetoanypublisher() │ │ └── index.html │ ├── failure │ │ └── index.html │ ├── filter(_:) │ │ └── index.html │ ├── first() │ │ └── index.html │ ├── first(timeout:scheduler:) │ │ └── index.html │ ├── first(where:) │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-2ldrr │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-2mvkb │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-3g13k │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-4546l │ │ └── index.html │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:) │ │ └── index.html │ ├── ignoreoutput() │ │ └── index.html │ ├── index.html │ ├── init(_:) │ │ └── index.html │ ├── last() │ │ └── index.html │ ├── last(where:) │ │ └── index.html │ ├── log(_:) │ │ └── index.html │ ├── makeconnectable() │ │ └── index.html │ ├── map(_:)-45s85 │ │ └── index.html │ ├── map(_:)-5adwv │ │ └── index.html │ ├── map(_:_:) │ │ └── index.html │ ├── map(_:_:_:) │ │ └── index.html │ ├── maperror(_:) │ │ └── index.html │ ├── max() │ │ └── index.html │ ├── max(by:) │ │ └── index.html │ ├── measureinterval(using:options:) │ │ └── index.html │ ├── merge(with:) │ │ └── index.html │ ├── merge(with:_:) │ │ └── index.html │ ├── merge(with:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:_:_:_:) │ │ └── index.html │ ├── min() │ │ └── index.html │ ├── min(by:) │ │ └── index.html │ ├── multicast(_:) │ │ └── index.html │ ├── multicast(subject:) │ │ └── index.html │ ├── output(at:) │ │ └── index.html │ ├── output(in:) │ │ └── index.html │ ├── output │ │ └── index.html │ ├── prefix(_:) │ │ └── index.html │ ├── prefix(untiloutputfrom:) │ │ └── index.html │ ├── prefix(while:) │ │ └── index.html │ ├── prepend(_:) │ │ └── index.html │ ├── print(_:to:) │ │ └── index.html │ ├── publisher-implementations │ │ └── index.html │ ├── receive(on:options:) │ │ └── index.html │ ├── receive(subscriber:) │ │ └── index.html │ ├── reduce(_:_:) │ │ └── index.html │ ├── removeduplicates() │ │ └── index.html │ ├── removeduplicates(by:) │ │ └── index.html │ ├── replaceempty(with:) │ │ └── index.html │ ├── replaceerror(with:) │ │ └── index.html │ ├── replacenil(with:) │ │ └── index.html │ ├── retry(_:) │ │ └── index.html │ ├── scan(_:_:) │ │ └── index.html │ ├── setfailuretype(to:) │ │ └── index.html │ ├── share() │ │ └── index.html │ ├── sink(receivecompletion:receivevalue:) │ │ └── index.html │ ├── sink(receivevalue:) │ │ └── index.html │ ├── subscribe(_:)-7eg9n │ │ └── index.html │ ├── subscribe(_:)-cxk9 │ │ └── index.html │ ├── subscribe(on:options:) │ │ └── index.html │ ├── switchtolatest() │ │ └── index.html │ ├── throttle(for:scheduler:latest:) │ │ └── index.html │ ├── timeout(_:scheduler:options:customerror:) │ │ └── index.html │ ├── tryallsatisfy(_:) │ │ └── index.html │ ├── trycatch(_:) │ │ └── index.html │ ├── trycompactmap(_:) │ │ └── index.html │ ├── trycontains(where:) │ │ └── index.html │ ├── trydrop(while:) │ │ └── index.html │ ├── tryfilter(_:) │ │ └── index.html │ ├── tryfirst(where:) │ │ └── index.html │ ├── trylast(where:) │ │ └── index.html │ ├── trymap(_:) │ │ └── index.html │ ├── trymax(by:) │ │ └── index.html │ ├── trymin(by:) │ │ └── index.html │ ├── tryprefix(while:) │ │ └── index.html │ ├── tryreduce(_:_:) │ │ └── index.html │ ├── tryremoveduplicates(by:) │ │ └── index.html │ ├── tryscan(_:_:) │ │ └── index.html │ ├── values-5f3ot │ │ └── index.html │ ├── values-d58k │ │ └── index.html │ ├── zip(_:) │ │ └── index.html │ ├── zip(_:_:)-9y7qc │ │ └── index.html │ ├── zip(_:_:)-d1hm │ │ └── index.html │ ├── zip(_:_:_:)-2ld1h │ │ └── index.html │ ├── zip(_:_:_:)-3yrcq │ │ └── index.html │ └── zip(_:_:_:_:) │ │ └── index.html │ ├── index.html │ ├── interactor │ └── index.html │ ├── modelservice │ ├── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── publisher │ │ └── index.html │ ├── publisherprevious │ │ └── index.html │ ├── snapshot │ │ └── index.html │ ├── subscript(dynamicmember:)-1iho0 │ │ └── index.html │ └── subscript(dynamicmember:)-3jmpf │ │ └── index.html │ ├── mutatingstore │ ├── cancel(_:) │ │ └── index.html │ ├── dispatch(_:)-33mt3 │ │ └── index.html │ ├── dispatch(_:)-39wtz │ │ └── index.html │ ├── index.html │ ├── publisher │ │ └── index.html │ ├── set(_:_:forceupdate:) │ │ └── index.html │ ├── state │ │ └── index.html │ ├── subscript(dynamicmember:)-6knfo │ │ └── index.html │ └── subscript(dynamicmember:)-8rh1w │ │ └── index.html │ ├── statepublisher │ ├── allsatisfy(_:) │ │ └── index.html │ ├── append(_:) │ │ └── index.html │ ├── assertnofailure(_:file:line:) │ │ └── index.html │ ├── assign(to:) │ │ └── index.html │ ├── assign(to:on:) │ │ └── index.html │ ├── assign(to:using:animation:forceupdate:) │ │ └── index.html │ ├── assign(toaction:using:)-1pxpq │ │ └── index.html │ ├── assign(toaction:using:)-7ob0t │ │ └── index.html │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:) │ │ └── index.html │ ├── breakpointonerror() │ │ └── index.html │ ├── buffer(size:prefetch:whenfull:) │ │ └── index.html │ ├── catch(_:) │ │ └── index.html │ ├── collect() │ │ └── index.html │ ├── collect(_:) │ │ └── index.html │ ├── collect(_:options:) │ │ └── index.html │ ├── combinelatest(_:) │ │ └── index.html │ ├── combinelatest(_:_:)-27zfg │ │ └── index.html │ ├── combinelatest(_:_:)-4zsqv │ │ └── index.html │ ├── combinelatest(_:_:_:)-3r61c │ │ └── index.html │ ├── combinelatest(_:_:_:)-9udho │ │ └── index.html │ ├── combinelatest(_:_:_:_:) │ │ └── index.html │ ├── compactmap(_:) │ │ └── index.html │ ├── contains(_:) │ │ └── index.html │ ├── contains(where:) │ │ └── index.html │ ├── count() │ │ └── index.html │ ├── debounce(for:scheduler:options:) │ │ └── index.html │ ├── decode(type:decoder:) │ │ └── index.html │ ├── delay(for:tolerance:scheduler:options:) │ │ └── index.html │ ├── drop(untiloutputfrom:) │ │ └── index.html │ ├── drop(while:) │ │ └── index.html │ ├── dropfirst(_:) │ │ └── index.html │ ├── encode(encoder:) │ │ └── index.html │ ├── erasetoanypublisher() │ │ └── index.html │ ├── failure │ │ └── index.html │ ├── filter(_:) │ │ └── index.html │ ├── first() │ │ └── index.html │ ├── first(timeout:scheduler:) │ │ └── index.html │ ├── first(where:) │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-9hsjb │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-9tao2 │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-9z9j2 │ │ └── index.html │ ├── flatmap(maxpublishers:_:)-qa2i │ │ └── index.html │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:) │ │ └── index.html │ ├── ignoreoutput() │ │ └── index.html │ ├── index.html │ ├── last() │ │ └── index.html │ ├── last(where:) │ │ └── index.html │ ├── log(_:) │ │ └── index.html │ ├── makeconnectable() │ │ └── index.html │ ├── map(_:)-5x3o0 │ │ └── index.html │ ├── map(_:)-6accw │ │ └── index.html │ ├── map(_:_:) │ │ └── index.html │ ├── map(_:_:_:) │ │ └── index.html │ ├── maperror(_:) │ │ └── index.html │ ├── max() │ │ └── index.html │ ├── max(by:) │ │ └── index.html │ ├── measureinterval(using:options:) │ │ └── index.html │ ├── merge(with:) │ │ └── index.html │ ├── merge(with:_:) │ │ └── index.html │ ├── merge(with:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:_:_:) │ │ └── index.html │ ├── merge(with:_:_:_:_:_:_:) │ │ └── index.html │ ├── min() │ │ └── index.html │ ├── min(by:) │ │ └── index.html │ ├── multicast(_:) │ │ └── index.html │ ├── multicast(subject:) │ │ └── index.html │ ├── output(at:) │ │ └── index.html │ ├── output(in:) │ │ └── index.html │ ├── output │ │ └── index.html │ ├── prefix(_:) │ │ └── index.html │ ├── prefix(untiloutputfrom:) │ │ └── index.html │ ├── prefix(while:) │ │ └── index.html │ ├── prepend(_:) │ │ └── index.html │ ├── print(_:to:) │ │ └── index.html │ ├── publisher(for:) │ │ └── index.html │ ├── publisher-implementations │ │ └── index.html │ ├── receive(on:options:) │ │ └── index.html │ ├── receive(subscriber:) │ │ └── index.html │ ├── reduce(_:_:) │ │ └── index.html │ ├── removeduplicates() │ │ └── index.html │ ├── removeduplicates(by:) │ │ └── index.html │ ├── replaceempty(with:) │ │ └── index.html │ ├── replaceerror(with:) │ │ └── index.html │ ├── replacenil(with:) │ │ └── index.html │ ├── retry(_:) │ │ └── index.html │ ├── scan(_:_:) │ │ └── index.html │ ├── setfailuretype(to:) │ │ └── index.html │ ├── share() │ │ └── index.html │ ├── sink(receivecompletion:receivevalue:) │ │ └── index.html │ ├── sink(receivevalue:) │ │ └── index.html │ ├── subscribe(_:)-1j7nw │ │ └── index.html │ ├── subscribe(_:)-2wkvo │ │ └── index.html │ ├── subscribe(on:options:) │ │ └── index.html │ ├── subscript(dynamicmember:) │ │ └── index.html │ ├── switchtolatest() │ │ └── index.html │ ├── throttle(for:scheduler:latest:) │ │ └── index.html │ ├── timeout(_:scheduler:options:customerror:) │ │ └── index.html │ ├── tryallsatisfy(_:) │ │ └── index.html │ ├── trycatch(_:) │ │ └── index.html │ ├── trycompactmap(_:) │ │ └── index.html │ ├── trycontains(where:) │ │ └── index.html │ ├── trydrop(while:) │ │ └── index.html │ ├── tryfilter(_:) │ │ └── index.html │ ├── tryfirst(where:) │ │ └── index.html │ ├── trylast(where:) │ │ └── index.html │ ├── trymap(_:) │ │ └── index.html │ ├── trymax(by:) │ │ └── index.html │ ├── trymin(by:) │ │ └── index.html │ ├── tryprefix(while:) │ │ └── index.html │ ├── tryreduce(_:_:) │ │ └── index.html │ ├── tryremoveduplicates(by:) │ │ └── index.html │ ├── tryscan(_:_:) │ │ └── index.html │ ├── values-5rdy5 │ │ └── index.html │ ├── values-7hlmo │ │ └── index.html │ ├── zip(_:) │ │ └── index.html │ ├── zip(_:_:)-2nwqf │ │ └── index.html │ ├── zip(_:_:)-93umj │ │ └── index.html │ ├── zip(_:_:_:)-1get2 │ │ └── index.html │ ├── zip(_:_:_:)-412rq │ │ └── index.html │ └── zip(_:_:_:_:) │ │ └── index.html │ ├── statestore │ ├── dynamicproperty-implementations │ │ └── index.html │ ├── index.html │ ├── init(wrappedvalue:) │ │ └── index.html │ ├── projectedvalue │ │ └── index.html │ ├── update() │ │ └── index.html │ └── wrappedvalue │ │ └── index.html │ ├── store │ ├── binder-swift.property │ │ └── index.html │ ├── binder-swift.struct │ │ ├── binding(get:action:) │ │ │ └── index.html │ │ ├── index.html │ │ └── subscript(dynamicmember:) │ │ │ └── index.html │ ├── cancel(_:) │ │ └── index.html │ ├── deactivehooks() │ │ └── index.html │ ├── dispatch(_:)-4tlzm │ │ └── index.html │ ├── dispatch(_:)-87kw7 │ │ └── index.html │ ├── index.html │ ├── init(state:) │ │ └── index.html │ ├── init(state:actionable:) │ │ └── index.html │ ├── init(state:hookable:) │ │ └── index.html │ ├── init(state:interactor:) │ │ └── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── publisher │ │ └── index.html │ ├── state │ │ └── index.html │ └── subscript(dynamicmember:) │ │ └── index.html │ └── teststore │ ├── didtrigger(_:)-3gl57 │ └── index.html │ ├── didtrigger(_:)-69q9s │ └── index.html │ ├── didtriggerhook │ └── index.html │ ├── index.html │ ├── init(state:) │ └── index.html │ ├── init(state:interactor:) │ └── index.html │ ├── stateupdates │ └── index.html │ ├── subscript(dynamicmember:)-17kqn │ └── index.html │ ├── subscript(dynamicmember:)-8c7am │ └── index.html │ ├── testhook(_:trigger:state:interactor:timeout:) │ └── index.html │ └── triggeredactions │ └── index.html ├── favicon.ico ├── favicon.svg ├── img ├── added-icon.d6f7e47d.svg ├── deprecated-icon.015b4f17.svg └── modified-icon.f496e73d.svg ├── index.html ├── index ├── availability.index ├── data.mdb └── navigator.index ├── js ├── chunk-2d0d3105.cd72cc8e.js ├── chunk-vendors.00bf82af.js ├── documentation-topic.f5df163e.js ├── documentation-topic~topic~tutorials-overview.06df3b46.js ├── highlight-js-bash.1b52852f.js ├── highlight-js-c.d1db3f17.js ├── highlight-js-cpp.eaddddbe.js ├── highlight-js-css.75eab1fe.js ├── highlight-js-custom-markdown.7cffc4b3.js ├── highlight-js-custom-swift.52388c22.js ├── highlight-js-diff.62d66733.js ├── highlight-js-http.163e45b6.js ├── highlight-js-java.8326d9d8.js ├── highlight-js-javascript.acb8a8eb.js ├── highlight-js-json.471128d2.js ├── highlight-js-llvm.6100b125.js ├── highlight-js-markdown.90077643.js ├── highlight-js-objectivec.bcdf5156.js ├── highlight-js-perl.757d7b6f.js ├── highlight-js-php.cc8d6c27.js ├── highlight-js-python.c214ed92.js ├── highlight-js-ruby.f889d392.js ├── highlight-js-scss.62ee18da.js ├── highlight-js-shell.dd7f411f.js ├── highlight-js-swift.84f3e88c.js ├── highlight-js-xml.9c3688c7.js ├── index.4dfda72c.js ├── topic.d56fc284.js └── tutorials-overview.0dfedc70.js ├── metadata.json └── theme-settings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/Chat/Chat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Chat/Chat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Chat/Chat/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/Chat/Chat/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Chat/Chat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Chat/Chat/ChatApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat/ChatApp.swift -------------------------------------------------------------------------------- /Examples/Chat/Chat/ChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat/ChatView.swift -------------------------------------------------------------------------------- /Examples/Chat/Chat/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/Chat/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Chat/ChatTests/ChatTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/ChatTests/ChatTests.swift -------------------------------------------------------------------------------- /Examples/Chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Chat/README.md -------------------------------------------------------------------------------- /Examples/Cocktail/Cocktail.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/Cocktail.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Cocktail/Cocktail/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/Cocktail/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Cocktail/Cocktail/CocktailApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/Cocktail/CocktailApp.swift -------------------------------------------------------------------------------- /Examples/Cocktail/Cocktail/CocktailDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/Cocktail/CocktailDetailsView.swift -------------------------------------------------------------------------------- /Examples/Cocktail/Cocktail/CocktailSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/Cocktail/CocktailSearchView.swift -------------------------------------------------------------------------------- /Examples/Cocktail/Cocktail/CocktailService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/Cocktail/CocktailService.swift -------------------------------------------------------------------------------- /Examples/Cocktail/Cocktail/CoctailAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/Cocktail/CoctailAPI.swift -------------------------------------------------------------------------------- /Examples/Cocktail/CocktailTests/CocktailDetailsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/CocktailTests/CocktailDetailsTests.swift -------------------------------------------------------------------------------- /Examples/Cocktail/CocktailTests/CocktailSearchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/CocktailTests/CocktailSearchTests.swift -------------------------------------------------------------------------------- /Examples/Cocktail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Cocktail/README.md -------------------------------------------------------------------------------- /Examples/EngineeringMode+Coordinator+Modules/EngineeringMode/EngineeringMode/README.md: -------------------------------------------------------------------------------- 1 | # EngineeringMode 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Examples/EngineeringMode+Coordinator+Modules/EngineeringMode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/EngineeringMode+Coordinator+Modules/EngineeringMode/Info.plist -------------------------------------------------------------------------------- /Examples/EngineeringMode+Coordinator+Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/EngineeringMode+Coordinator+Modules/README.md -------------------------------------------------------------------------------- /Examples/Form/Form.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Form/Form.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Form/Form/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/Form/Form/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Form/Form/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Form/Form/FormApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form/FormApp.swift -------------------------------------------------------------------------------- /Examples/Form/Form/FormView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form/FormView.swift -------------------------------------------------------------------------------- /Examples/Form/Form/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/Form/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/Form/README.md -------------------------------------------------------------------------------- /Examples/UIKitApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/README.md -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp/Info.plist -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp/SceneDelegate.swift -------------------------------------------------------------------------------- /Examples/UIKitApp/UIKitApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Examples/UIKitApp/UIKitApp/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Eazy/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Action.swift -------------------------------------------------------------------------------- /Sources/Eazy/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Debug.swift -------------------------------------------------------------------------------- /Sources/Eazy/Extensions/Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Extensions/Equatable.swift -------------------------------------------------------------------------------- /Sources/Eazy/Extensions/Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Extensions/Publisher.swift -------------------------------------------------------------------------------- /Sources/Eazy/Extensions/UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Extensions/UIKit.swift -------------------------------------------------------------------------------- /Sources/Eazy/Hooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Hooks.swift -------------------------------------------------------------------------------- /Sources/Eazy/Interactor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Interactor.swift -------------------------------------------------------------------------------- /Sources/Eazy/Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Sources/Eazy/Store.swift -------------------------------------------------------------------------------- /Tests/EazyTests/EazyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Tests/EazyTests/EazyTests.swift -------------------------------------------------------------------------------- /Tests/EazyTests/UIKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/Tests/EazyTests/UIKitTests.swift -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/css/documentation-topic.de084985.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/css/documentation-topic.de084985.css -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/css/index.47bc740e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/css/index.47bc740e.css -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/css/topic.2eb01958.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/css/topic.2eb01958.css -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/css/tutorials-overview.8754eb09.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/css/tutorials-overview.8754eb09.css -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/actionable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/actionable.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/actionable/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/actionable/action.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/actionable/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/actionable/state.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/animationoption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/animationoption.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/animationoption/none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/animationoption/none.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/cancellableaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/cancellableaction.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/debugstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/debugstore.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/debugstore/print.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/debugstore/print.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/emptyaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/emptyaction.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/emptyaction/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/emptyaction/!=(_:_:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookable.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookable/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookable/action.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookable/hook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookable/hook.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookable/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookable/state.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/count().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/count().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/failure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/failure.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/first().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/first().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/init(_:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/last().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/last().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/log(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/log(_:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/max().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/max().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/max(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/max(by:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/min().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/min().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/min(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/min(by:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/output.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/share().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/share().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/zip(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/hookpublisher/zip(_:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/interactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/interactor.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/modelservice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/modelservice.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/modelservice/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/modelservice/publisher.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/modelservice/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/modelservice/snapshot.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/mutatingstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/mutatingstore.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/mutatingstore/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/mutatingstore/state.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/count().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/count().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/failure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/failure.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/first().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/first().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/last().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/last().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/log(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/log(_:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/max().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/max().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/min().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/min().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/output.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/share().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/share().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/zip(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statepublisher/zip(_:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statestore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statestore.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/statestore/update().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/statestore/update().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/store.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/store/cancel(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/store/cancel(_:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/store/deactivehooks().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/store/deactivehooks().json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/store/init(state:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/store/init(state:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/store/objectwillchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/store/objectwillchange.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/store/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/store/publisher.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/store/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/store/state.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/teststore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/teststore.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/teststore/init(state:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/teststore/init(state:).json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/data/documentation/eazy/teststore/stateupdates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/data/documentation/eazy/teststore/stateupdates.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/favicon.ico -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/favicon.svg -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/index.html -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/index/availability.index -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/index/data.mdb -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/index/navigator.index -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/chunk-vendors.00bf82af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/chunk-vendors.00bf82af.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/documentation-topic.f5df163e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/documentation-topic.f5df163e.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-custom-swift.52388c22.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-custom-swift.52388c22.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/index.4dfda72c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/index.4dfda72c.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/topic.d56fc284.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/topic.d56fc284.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/js/tutorials-overview.0dfedc70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/js/tutorials-overview.0dfedc70.js -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/metadata.json -------------------------------------------------------------------------------- /docs/Eazy.doccarchive/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/Eazy.doccarchive/theme-settings.json -------------------------------------------------------------------------------- /docs/css/documentation-topic.de084985.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/css/documentation-topic.de084985.css -------------------------------------------------------------------------------- /docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css -------------------------------------------------------------------------------- /docs/css/index.47bc740e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/css/index.47bc740e.css -------------------------------------------------------------------------------- /docs/css/topic.2eb01958.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/css/topic.2eb01958.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.8754eb09.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/css/tutorials-overview.8754eb09.css -------------------------------------------------------------------------------- /docs/data/documentation/eazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/actionable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/actionable.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/actionable/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/actionable/action.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/actionable/onaction(_:store:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/actionable/onaction(_:store:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/actionable/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/actionable/state.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/animationoption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/animationoption.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/animationoption/custom(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/animationoption/custom(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/animationoption/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/animationoption/default.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/animationoption/none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/animationoption/none.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/cancellableaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/cancellableaction.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/cancellableaction/cancelidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/cancellableaction/cancelidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/debugstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/debugstore.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/debugstore/disablelogging().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/debugstore/disablelogging().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/debugstore/enablelogging(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/debugstore/enablelogging(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/debugstore/filteroption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/debugstore/filteroption.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/debugstore/filteroption/exclude(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/debugstore/filteroption/exclude(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/debugstore/filteroption/include(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/debugstore/filteroption/include(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/debugstore/print.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/debugstore/print.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/emptyaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/emptyaction.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/emptyaction/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/emptyaction/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/emptyaction/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/emptyaction/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/emptyaction/with(setter:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/emptyaction/with(setter:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookable.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookable/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookable/action.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookable/hook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookable/hook.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookable/publisher(for:store:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookable/publisher(for:store:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookable/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookable/state.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/allsatisfy(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/allsatisfy(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/append(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/append(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/assign(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/assign(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/assign(to:on:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/assign(to:on:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/breakpointonerror().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/breakpointonerror().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/catch(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/catch(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/collect().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/collect().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/collect(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/collect(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/collect(_:options:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/collect(_:options:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/combinelatest(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/combinelatest(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/combinelatest(_:_:)-3cv2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/combinelatest(_:_:)-3cv2e.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/combinelatest(_:_:)-633fu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/combinelatest(_:_:)-633fu.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/combinelatest(_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/combinelatest(_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/compactmap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/compactmap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/contains(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/contains(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/contains(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/contains(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/count().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/count().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/decode(type:decoder:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/decode(type:decoder:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/drop(untiloutputfrom:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/drop(untiloutputfrom:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/drop(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/drop(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/dropfirst(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/dropfirst(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/encode(encoder:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/encode(encoder:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/erasetoanypublisher().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/erasetoanypublisher().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/failure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/failure.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/filter(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/filter(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/first().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/first().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/first(timeout:scheduler:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/first(timeout:scheduler:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/first(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/first(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/ignoreoutput().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/ignoreoutput().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/last().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/last().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/last(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/last(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/log(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/log(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/makeconnectable().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/makeconnectable().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/map(_:)-45s85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/map(_:)-45s85.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/map(_:)-5adwv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/map(_:)-5adwv.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/map(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/map(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/map(_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/map(_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/maperror(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/maperror(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/max().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/max().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/max(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/max(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/merge(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/merge(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/merge(with:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/merge(with:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/merge(with:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/merge(with:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/merge(with:_:_:_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/min().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/min().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/min(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/min(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/multicast(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/multicast(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/multicast(subject:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/multicast(subject:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/output(at:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/output(at:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/output(in:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/output(in:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/output.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/prefix(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/prefix(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/prefix(untiloutputfrom:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/prefix(untiloutputfrom:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/prefix(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/prefix(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/prepend(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/prepend(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/print(_:to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/print(_:to:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/publisher-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/publisher-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/receive(on:options:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/receive(on:options:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/receive(subscriber:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/receive(subscriber:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/reduce(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/reduce(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/removeduplicates().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/removeduplicates().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/removeduplicates(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/removeduplicates(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/replaceempty(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/replaceempty(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/replaceerror(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/replaceerror(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/replacenil(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/replacenil(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/retry(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/retry(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/scan(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/scan(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/setfailuretype(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/setfailuretype(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/share().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/share().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/sink(receivevalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/sink(receivevalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/subscribe(_:)-7eg9n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/subscribe(_:)-7eg9n.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/subscribe(_:)-cxk9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/subscribe(_:)-cxk9.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/subscribe(on:options:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/subscribe(on:options:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/switchtolatest().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/switchtolatest().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/tryallsatisfy(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/tryallsatisfy(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trycatch(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trycatch(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trycompactmap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trycompactmap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trycontains(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trycontains(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trydrop(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trydrop(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/tryfilter(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/tryfilter(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/tryfirst(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/tryfirst(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trylast(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trylast(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trymap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trymap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trymax(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trymax(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/trymin(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/trymin(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/tryprefix(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/tryprefix(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/tryreduce(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/tryreduce(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/tryremoveduplicates(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/tryremoveduplicates(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/tryscan(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/tryscan(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/values-5f3ot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/values-5f3ot.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/values-d58k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/values-d58k.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/zip(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/zip(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/zip(_:_:)-9y7qc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/zip(_:_:)-9y7qc.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/zip(_:_:)-d1hm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/zip(_:_:)-d1hm.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/zip(_:_:_:)-2ld1h.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/zip(_:_:_:)-2ld1h.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/zip(_:_:_:)-3yrcq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/zip(_:_:_:)-3yrcq.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/hookpublisher/zip(_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/hookpublisher/zip(_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/interactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/interactor.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/modelservice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/modelservice.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/modelservice/objectwillchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/modelservice/objectwillchange.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/modelservice/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/modelservice/publisher.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/modelservice/publisherprevious.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/modelservice/publisherprevious.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/modelservice/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/modelservice/snapshot.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/mutatingstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/mutatingstore.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/mutatingstore/cancel(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/mutatingstore/cancel(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/mutatingstore/dispatch(_:)-33mt3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/mutatingstore/dispatch(_:)-33mt3.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/mutatingstore/dispatch(_:)-39wtz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/mutatingstore/dispatch(_:)-39wtz.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/mutatingstore/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/mutatingstore/publisher.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/mutatingstore/set(_:_:forceupdate:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/mutatingstore/set(_:_:forceupdate:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/mutatingstore/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/mutatingstore/state.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/allsatisfy(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/allsatisfy(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/append(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/append(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/assign(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/assign(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/assign(to:on:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/assign(to:on:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/breakpointonerror().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/breakpointonerror().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/catch(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/catch(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/collect().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/collect().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/collect(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/collect(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/collect(_:options:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/collect(_:options:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/combinelatest(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/combinelatest(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/combinelatest(_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/combinelatest(_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/compactmap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/compactmap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/contains(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/contains(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/contains(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/contains(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/count().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/count().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/decode(type:decoder:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/decode(type:decoder:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/drop(untiloutputfrom:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/drop(untiloutputfrom:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/drop(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/drop(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/dropfirst(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/dropfirst(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/encode(encoder:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/encode(encoder:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/erasetoanypublisher().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/erasetoanypublisher().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/failure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/failure.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/filter(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/filter(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/first().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/first().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/first(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/first(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/ignoreoutput().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/ignoreoutput().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/last().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/last().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/last(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/last(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/log(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/log(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/makeconnectable().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/makeconnectable().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/map(_:)-5x3o0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/map(_:)-5x3o0.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/map(_:)-6accw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/map(_:)-6accw.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/map(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/map(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/map(_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/map(_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/maperror(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/maperror(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/max().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/max().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/max(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/max(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/merge(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/merge(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/merge(with:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/merge(with:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/merge(with:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/merge(with:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/merge(with:_:_:_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/min().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/min().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/min(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/min(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/multicast(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/multicast(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/multicast(subject:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/multicast(subject:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/output(at:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/output(at:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/output(in:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/output(in:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/output.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/prefix(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/prefix(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/prefix(untiloutputfrom:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/prefix(untiloutputfrom:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/prefix(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/prefix(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/prepend(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/prepend(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/print(_:to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/print(_:to:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/publisher(for:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/publisher(for:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/receive(on:options:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/receive(on:options:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/receive(subscriber:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/receive(subscriber:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/reduce(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/reduce(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/removeduplicates().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/removeduplicates().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/removeduplicates(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/removeduplicates(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/replaceempty(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/replaceempty(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/replaceerror(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/replaceerror(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/replacenil(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/replacenil(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/retry(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/retry(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/scan(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/scan(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/setfailuretype(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/setfailuretype(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/share().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/share().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/sink(receivevalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/sink(receivevalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/subscribe(_:)-1j7nw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/subscribe(_:)-1j7nw.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/subscribe(_:)-2wkvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/subscribe(_:)-2wkvo.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/subscribe(on:options:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/subscribe(on:options:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/switchtolatest().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/switchtolatest().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/tryallsatisfy(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/tryallsatisfy(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trycatch(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trycatch(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trycompactmap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trycompactmap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trycontains(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trycontains(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trydrop(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trydrop(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/tryfilter(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/tryfilter(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/tryfirst(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/tryfirst(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trylast(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trylast(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trymap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trymap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trymax(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trymax(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/trymin(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/trymin(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/tryprefix(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/tryprefix(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/tryreduce(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/tryreduce(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/tryremoveduplicates(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/tryremoveduplicates(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/tryscan(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/tryscan(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/values-5rdy5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/values-5rdy5.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/values-7hlmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/values-7hlmo.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/zip(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/zip(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/zip(_:_:)-2nwqf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/zip(_:_:)-2nwqf.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/zip(_:_:)-93umj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/zip(_:_:)-93umj.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/zip(_:_:_:)-1get2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/zip(_:_:_:)-1get2.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/zip(_:_:_:)-412rq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/zip(_:_:_:)-412rq.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statepublisher/zip(_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statepublisher/zip(_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statestore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statestore.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statestore/init(wrappedvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statestore/init(wrappedvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statestore/projectedvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statestore/projectedvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statestore/update().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statestore/update().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/statestore/wrappedvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/statestore/wrappedvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/binder-swift.property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/binder-swift.property.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/binder-swift.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/binder-swift.struct.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/cancel(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/cancel(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/deactivehooks().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/deactivehooks().json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/dispatch(_:)-4tlzm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/dispatch(_:)-4tlzm.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/dispatch(_:)-87kw7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/dispatch(_:)-87kw7.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/init(state:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/init(state:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/init(state:actionable:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/init(state:actionable:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/init(state:hookable:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/init(state:hookable:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/init(state:interactor:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/init(state:interactor:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/objectwillchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/objectwillchange.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/publisher.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/state.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/store/subscript(dynamicmember:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/store/subscript(dynamicmember:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore/didtrigger(_:)-3gl57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore/didtrigger(_:)-3gl57.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore/didtrigger(_:)-69q9s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore/didtrigger(_:)-69q9s.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore/didtriggerhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore/didtriggerhook.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore/init(state:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore/init(state:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore/init(state:interactor:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore/init(state:interactor:).json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore/stateupdates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore/stateupdates.json -------------------------------------------------------------------------------- /docs/data/documentation/eazy/teststore/triggeredactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/data/documentation/eazy/teststore/triggeredactions.json -------------------------------------------------------------------------------- /docs/documentation/eazy/actionable/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/actionable/action/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/actionable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/actionable/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/actionable/onaction(_:store:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/actionable/onaction(_:store:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/actionable/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/actionable/state/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/animationoption/custom(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/animationoption/custom(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/animationoption/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/animationoption/default/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/animationoption/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/animationoption/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/animationoption/none/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/animationoption/none/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/cancellableaction/cancelidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/cancellableaction/cancelidentifier/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/cancellableaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/cancellableaction/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/debugstore/disablelogging()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/debugstore/disablelogging()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/debugstore/enablelogging(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/debugstore/enablelogging(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/debugstore/filteroption/exclude(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/debugstore/filteroption/exclude(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/debugstore/filteroption/include(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/debugstore/filteroption/include(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/debugstore/filteroption/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/debugstore/filteroption/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/debugstore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/debugstore/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/debugstore/print/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/debugstore/print/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/emptyaction/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/emptyaction/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/emptyaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/emptyaction/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/emptyaction/with(setter:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/emptyaction/with(setter:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookable/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookable/action/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookable/hook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookable/hook/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookable/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookable/publisher(for:store:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookable/publisher(for:store:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookable/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookable/state/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/allsatisfy(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/allsatisfy(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/append(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/append(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/assign(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/assign(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/assign(to:on:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/assign(to:on:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/breakpointonerror()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/breakpointonerror()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/catch(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/catch(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/collect()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/collect()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/collect(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/collect(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/collect(_:options:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/collect(_:options:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/combinelatest(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/combinelatest(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/compactmap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/compactmap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/contains(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/contains(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/contains(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/contains(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/count()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/count()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/decode(type:decoder:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/decode(type:decoder:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/drop(untiloutputfrom:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/drop(untiloutputfrom:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/drop(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/drop(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/dropfirst(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/dropfirst(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/encode(encoder:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/encode(encoder:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/erasetoanypublisher()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/erasetoanypublisher()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/failure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/failure/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/filter(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/filter(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/first()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/first()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/first(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/first(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/ignoreoutput()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/ignoreoutput()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/last()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/last()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/last(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/last(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/log(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/log(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/makeconnectable()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/makeconnectable()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/map(_:)-45s85/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/map(_:)-45s85/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/map(_:)-5adwv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/map(_:)-5adwv/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/map(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/map(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/map(_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/map(_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/maperror(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/maperror(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/max()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/max()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/max(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/max(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/merge(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/merge(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/merge(with:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/merge(with:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/merge(with:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/merge(with:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/merge(with:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/merge(with:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/merge(with:_:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/merge(with:_:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/merge(with:_:_:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/merge(with:_:_:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/min()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/min()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/min(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/min(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/multicast(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/multicast(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/multicast(subject:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/multicast(subject:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/output(at:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/output(at:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/output(in:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/output(in:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/output/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/prefix(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/prefix(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/prefix(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/prefix(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/prepend(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/prepend(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/print(_:to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/print(_:to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/receive(on:options:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/receive(on:options:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/receive(subscriber:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/receive(subscriber:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/reduce(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/reduce(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/removeduplicates()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/removeduplicates()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/removeduplicates(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/removeduplicates(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/replaceempty(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/replaceempty(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/replaceerror(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/replaceerror(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/replacenil(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/replacenil(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/retry(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/retry(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/scan(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/scan(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/setfailuretype(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/setfailuretype(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/share()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/share()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/sink(receivevalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/sink(receivevalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/subscribe(_:)-7eg9n/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/subscribe(_:)-7eg9n/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/subscribe(_:)-cxk9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/subscribe(_:)-cxk9/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/subscribe(on:options:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/subscribe(on:options:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/switchtolatest()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/switchtolatest()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/tryallsatisfy(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/tryallsatisfy(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trycatch(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trycatch(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trycompactmap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trycompactmap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trycontains(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trycontains(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trydrop(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trydrop(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/tryfilter(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/tryfilter(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/tryfirst(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/tryfirst(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trylast(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trylast(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trymap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trymap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trymax(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trymax(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/trymin(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/trymin(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/tryprefix(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/tryprefix(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/tryreduce(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/tryreduce(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/tryscan(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/tryscan(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/values-5f3ot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/values-5f3ot/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/values-d58k/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/values-d58k/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/zip(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/zip(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/zip(_:_:)-9y7qc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/zip(_:_:)-9y7qc/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/zip(_:_:)-d1hm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/zip(_:_:)-d1hm/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/zip(_:_:_:)-2ld1h/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/zip(_:_:_:)-2ld1h/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/zip(_:_:_:)-3yrcq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/zip(_:_:_:)-3yrcq/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/hookpublisher/zip(_:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/hookpublisher/zip(_:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/interactor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/interactor/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/modelservice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/modelservice/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/modelservice/objectwillchange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/modelservice/objectwillchange/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/modelservice/publisher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/modelservice/publisher/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/modelservice/publisherprevious/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/modelservice/publisherprevious/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/modelservice/snapshot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/modelservice/snapshot/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/mutatingstore/cancel(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/mutatingstore/cancel(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/mutatingstore/dispatch(_:)-33mt3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/mutatingstore/dispatch(_:)-33mt3/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/mutatingstore/dispatch(_:)-39wtz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/mutatingstore/dispatch(_:)-39wtz/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/mutatingstore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/mutatingstore/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/mutatingstore/publisher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/mutatingstore/publisher/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/mutatingstore/set(_:_:forceupdate:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/mutatingstore/set(_:_:forceupdate:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/mutatingstore/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/mutatingstore/state/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/allsatisfy(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/allsatisfy(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/append(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/append(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/assign(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/assign(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/assign(to:on:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/assign(to:on:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/breakpointonerror()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/breakpointonerror()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/catch(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/catch(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/collect()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/collect()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/collect(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/collect(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/collect(_:options:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/collect(_:options:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/combinelatest(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/combinelatest(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/compactmap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/compactmap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/contains(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/contains(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/contains(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/contains(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/count()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/count()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/decode(type:decoder:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/decode(type:decoder:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/drop(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/drop(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/dropfirst(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/dropfirst(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/encode(encoder:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/encode(encoder:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/erasetoanypublisher()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/erasetoanypublisher()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/failure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/failure/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/filter(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/filter(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/first()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/first()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/first(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/first(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/ignoreoutput()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/ignoreoutput()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/last()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/last()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/last(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/last(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/log(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/log(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/makeconnectable()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/makeconnectable()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/map(_:)-5x3o0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/map(_:)-5x3o0/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/map(_:)-6accw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/map(_:)-6accw/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/map(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/map(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/map(_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/map(_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/maperror(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/maperror(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/max()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/max()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/max(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/max(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/merge(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/merge(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/merge(with:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/merge(with:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/merge(with:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/merge(with:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/merge(with:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/merge(with:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/merge(with:_:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/merge(with:_:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/min()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/min()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/min(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/min(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/multicast(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/multicast(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/multicast(subject:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/multicast(subject:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/output(at:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/output(at:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/output(in:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/output(in:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/output/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/prefix(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/prefix(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/prefix(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/prefix(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/prepend(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/prepend(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/print(_:to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/print(_:to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/publisher(for:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/publisher(for:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/receive(on:options:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/receive(on:options:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/receive(subscriber:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/receive(subscriber:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/reduce(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/reduce(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/removeduplicates()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/removeduplicates()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/removeduplicates(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/removeduplicates(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/replaceempty(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/replaceempty(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/replaceerror(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/replaceerror(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/replacenil(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/replacenil(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/retry(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/retry(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/scan(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/scan(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/setfailuretype(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/setfailuretype(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/share()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/share()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/sink(receivevalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/sink(receivevalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/subscribe(_:)-1j7nw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/subscribe(_:)-1j7nw/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/subscribe(_:)-2wkvo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/subscribe(_:)-2wkvo/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/switchtolatest()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/switchtolatest()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/tryallsatisfy(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/tryallsatisfy(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trycatch(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trycatch(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trycompactmap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trycompactmap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trycontains(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trycontains(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trydrop(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trydrop(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/tryfilter(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/tryfilter(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/tryfirst(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/tryfirst(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trylast(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trylast(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trymap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trymap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trymax(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trymax(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/trymin(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/trymin(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/tryprefix(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/tryprefix(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/tryreduce(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/tryreduce(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/tryscan(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/tryscan(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/values-5rdy5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/values-5rdy5/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/values-7hlmo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/values-7hlmo/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/zip(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/zip(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/zip(_:_:)-2nwqf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/zip(_:_:)-2nwqf/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/zip(_:_:)-93umj/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/zip(_:_:)-93umj/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/zip(_:_:_:)-1get2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/zip(_:_:_:)-1get2/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/zip(_:_:_:)-412rq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/zip(_:_:_:)-412rq/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statepublisher/zip(_:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statepublisher/zip(_:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statestore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statestore/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statestore/init(wrappedvalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statestore/init(wrappedvalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statestore/projectedvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statestore/projectedvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statestore/update()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statestore/update()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/statestore/wrappedvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/statestore/wrappedvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/binder-swift.property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/binder-swift.property/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/binder-swift.struct/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/binder-swift.struct/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/cancel(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/cancel(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/deactivehooks()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/deactivehooks()/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/dispatch(_:)-4tlzm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/dispatch(_:)-4tlzm/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/dispatch(_:)-87kw7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/dispatch(_:)-87kw7/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/init(state:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/init(state:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/init(state:actionable:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/init(state:actionable:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/init(state:hookable:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/init(state:hookable:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/init(state:interactor:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/init(state:interactor:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/objectwillchange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/objectwillchange/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/publisher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/publisher/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/state/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/store/subscript(dynamicmember:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/store/subscript(dynamicmember:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/didtrigger(_:)-3gl57/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/didtrigger(_:)-3gl57/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/didtrigger(_:)-69q9s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/didtrigger(_:)-69q9s/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/didtriggerhook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/didtriggerhook/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/init(state:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/init(state:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/init(state:interactor:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/init(state:interactor:)/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/stateupdates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/stateupdates/index.html -------------------------------------------------------------------------------- /docs/documentation/eazy/teststore/triggeredactions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/documentation/eazy/teststore/triggeredactions/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/index/availability.index -------------------------------------------------------------------------------- /docs/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/index/data.mdb -------------------------------------------------------------------------------- /docs/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/index/navigator.index -------------------------------------------------------------------------------- /docs/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.00bf82af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/chunk-vendors.00bf82af.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.f5df163e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/documentation-topic.f5df163e.js -------------------------------------------------------------------------------- /docs/js/documentation-topic~topic~tutorials-overview.06df3b46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/documentation-topic~topic~tutorials-overview.06df3b46.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.52388c22.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-custom-swift.52388c22.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/js/index.4dfda72c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/index.4dfda72c.js -------------------------------------------------------------------------------- /docs/js/topic.d56fc284.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/topic.d56fc284.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.0dfedc70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/js/tutorials-overview.0dfedc70.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /docs/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/swift-eazy/HEAD/docs/theme-settings.json --------------------------------------------------------------------------------