├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ ├── feature-request--existing-platforms-.md │ ├── new-platform.md │ └── other.md └── workflows │ └── build-all.yml ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Changelog.MD ├── LICENSE ├── README.md ├── cache ├── README.md ├── build.gradle.kts ├── cache.podspec ├── docs │ ├── style.css │ └── suparnatural-cache │ │ ├── alltypes │ │ └── index.html │ │ ├── com.suparnatural.core.cache │ │ ├── -cache-manager │ │ │ ├── cache.html │ │ │ ├── index.html │ │ │ └── initialize.html │ │ ├── -cache-replacement-policy │ │ │ ├── cache-size.html │ │ │ ├── clear-registry-unsafe.html │ │ │ ├── evict-unsafe.html │ │ │ ├── index.html │ │ │ ├── register-object-unsafe.html │ │ │ └── unregister-object-unsafe.html │ │ ├── -cache-store-blocking-worker │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ ├── persist-object.html │ │ │ ├── terminate.html │ │ │ └── unlink-object.html │ │ ├── -cache-store-non-blocking-worker │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ ├── persist-object.html │ │ │ ├── terminate.html │ │ │ ├── unlink-object.html │ │ │ └── worker.html │ │ ├── -cache-store-preprocessor │ │ │ ├── archive.html │ │ │ ├── index.html │ │ │ └── unarchive.html │ │ ├── -cache-store-worker │ │ │ ├── index.html │ │ │ ├── persist-object.html │ │ │ ├── terminate.html │ │ │ └── unlink-object.html │ │ ├── -cache-store │ │ │ ├── blocking.html │ │ │ ├── fetch-all-objects.html │ │ │ ├── flush-and-close.html │ │ │ ├── index.html │ │ │ ├── persist-object.html │ │ │ ├── preprocessors.html │ │ │ ├── unlink-object.html │ │ │ └── wipe.html │ │ ├── -cache │ │ │ ├── add-object.html │ │ │ ├── get-all-objects.html │ │ │ ├── get-object.html │ │ │ ├── hash-code.html │ │ │ ├── index.html │ │ │ ├── persistent-stores.html │ │ │ ├── rehydrate.html │ │ │ ├── remove-object.html │ │ │ ├── replacement-policy.html │ │ │ └── size.html │ │ ├── -cacheable-container │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ ├── key.html │ │ │ ├── next.html │ │ │ ├── obj.html │ │ │ └── previous.html │ │ ├── -cacheable │ │ │ ├── cache-key.html │ │ │ ├── index.html │ │ │ └── serialize-for-persistence.html │ │ ├── -disk-store │ │ │ ├── -init-.html │ │ │ ├── blocking.html │ │ │ ├── fetch-all-objects.html │ │ │ ├── flush-and-close.html │ │ │ ├── index.html │ │ │ ├── location.html │ │ │ ├── persist-object.html │ │ │ ├── preprocessors.html │ │ │ ├── unlink-object.html │ │ │ └── wipe.html │ │ ├── -fifo-cache-replacement-policy │ │ │ ├── -init-.html │ │ │ ├── cache-size.html │ │ │ ├── clear-registry-unsafe.html │ │ │ ├── evict-unsafe.html │ │ │ ├── index.html │ │ │ ├── register-object-unsafe.html │ │ │ └── unregister-object-unsafe.html │ │ ├── -in-memory-cache │ │ │ ├── -init-.html │ │ │ ├── add-object.html │ │ │ ├── get-all-objects.html │ │ │ ├── hash-code.html │ │ │ ├── index.html │ │ │ ├── lock.html │ │ │ ├── persistent-stores.html │ │ │ ├── rehydrate.html │ │ │ ├── remove-object.html │ │ │ ├── replacement-policy.html │ │ │ └── size.html │ │ ├── -linear-probing-cache │ │ │ ├── -init-.html │ │ │ ├── -tomb-stone-marker │ │ │ │ ├── -init-.html │ │ │ │ ├── cache-key.html │ │ │ │ ├── index.html │ │ │ │ └── serialize-for-persistence.html │ │ │ ├── add-object.html │ │ │ ├── get-object.html │ │ │ ├── index.html │ │ │ └── remove-object.html │ │ ├── -raw-cacheable │ │ │ ├── -init-.html │ │ │ ├── cache-key.html │ │ │ ├── index.html │ │ │ ├── key.html │ │ │ ├── serialize-for-persistence.html │ │ │ └── value.html │ │ ├── -robin-hood-probing-cache │ │ │ ├── -init-.html │ │ │ ├── -quintuple │ │ │ │ ├── -init-.html │ │ │ │ ├── first.html │ │ │ │ ├── fourth.html │ │ │ │ ├── index.html │ │ │ │ ├── second.html │ │ │ │ └── third.html │ │ │ ├── add-object.html │ │ │ ├── get-object.html │ │ │ ├── index.html │ │ │ └── remove-object.html │ │ └── index.html │ │ ├── index.html │ │ └── package-list ├── gradle.properties ├── settings.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── androidTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── commonMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── cache │ │ │ ├── Cache.kt │ │ │ ├── CacheManager.kt │ │ │ ├── CacheReplacementPolicy.kt │ │ │ ├── CacheStore.kt │ │ │ ├── CacheStoreBlockingWorker.kt │ │ │ ├── CacheStoreNonBlockingWorker.kt │ │ │ ├── CacheStorePreprocessor.kt │ │ │ ├── CacheStoreWorker.kt │ │ │ ├── Cacheable.kt │ │ │ ├── CacheableContainer.kt │ │ │ ├── DiskStore.kt │ │ │ ├── FifoCacheReplacementPolicy.kt │ │ │ ├── InMemoryCache.kt │ │ │ ├── LinearProbingCache.kt │ │ │ ├── PlaceholderCache.kt │ │ │ ├── RawCacheable.kt │ │ │ └── RobinHoodProbingCache.kt │ └── resources │ │ └── .keep │ ├── commonTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── cache │ │ │ └── test.kt │ └── resources │ │ └── .keep │ ├── iosMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── iosTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ ├── .keep │ │ └── Info.plist │ └── main │ └── AndroidManifest.xml ├── concurrency ├── README.md ├── build.gradle.kts ├── docs │ ├── -search.html │ ├── images │ │ ├── arrow_down.svg │ │ ├── docs_logo.svg │ │ ├── logo-icon.svg │ │ └── logo-text.svg │ ├── navigation.html │ ├── scripts │ │ ├── clipboard.js │ │ ├── main.js │ │ ├── main.js.map │ │ ├── navigation-pane.json │ │ ├── navigationLoader.js │ │ ├── pages.js │ │ ├── platformContentHandler.js │ │ ├── search.js │ │ └── sourceset_dependencies.js │ ├── styles │ │ ├── jetbrains-mono.css │ │ └── style.css │ └── suparnatural-concurrency │ │ ├── com.suparnatural.core.concurrency │ │ ├── -atomic-reference │ │ │ ├── -atomic-reference.html │ │ │ ├── compare-and-set.html │ │ │ └── index.html │ │ ├── -background-worker │ │ │ ├── -background-worker.html │ │ │ ├── execute-and-resume.html │ │ │ ├── execute.html │ │ │ ├── index.html │ │ │ └── terminate.html │ │ ├── -deferred-future │ │ │ ├── -deferred-future.html │ │ │ ├── await.html │ │ │ ├── index.html │ │ │ └── set-value.html │ │ ├── -future │ │ │ ├── await.html │ │ │ └── index.html │ │ ├── -immutability │ │ │ ├── -immutability.html │ │ │ ├── get-value.html │ │ │ ├── index.html │ │ │ └── set-value.html │ │ ├── -job-dispatcher │ │ │ ├── dispatch-on-current-thread.html │ │ │ ├── dispatch-on-main-thread.html │ │ │ ├── dispatch-on-new-background-thread.html │ │ │ ├── dispatch-on-worker.html │ │ │ └── index.html │ │ ├── -job-future │ │ │ ├── -job-future.html │ │ │ ├── await.html │ │ │ └── index.html │ │ ├── -job │ │ │ ├── -companion │ │ │ │ ├── create.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── -looper-worker │ │ │ ├── -looper-worker.html │ │ │ ├── execute-and-resume.html │ │ │ ├── execute.html │ │ │ ├── index.html │ │ │ └── terminate.html │ │ ├── -main-worker │ │ │ ├── -main-worker.html │ │ │ ├── execute-and-resume.html │ │ │ ├── execute.html │ │ │ ├── index.html │ │ │ └── terminate.html │ │ ├── -mutex-lock │ │ │ ├── -mutex-lock.html │ │ │ ├── destroy.html │ │ │ ├── index.html │ │ │ ├── lock.html │ │ │ ├── try-lock.html │ │ │ └── unlock.html │ │ ├── -native-future │ │ │ ├── -native-future.html │ │ │ ├── await.html │ │ │ └── index.html │ │ ├── -read-write-lock │ │ │ ├── -read-write-lock.html │ │ │ ├── acquire-read-lock.html │ │ │ ├── acquire-write-lock.html │ │ │ ├── destroy.html │ │ │ ├── index.html │ │ │ ├── release-read-lock.html │ │ │ └── release-write-lock.html │ │ ├── -resumable-job │ │ │ ├── -companion │ │ │ │ ├── create.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── -value-future │ │ │ ├── -value-future.html │ │ │ ├── await.html │ │ │ └── index.html │ │ ├── -worker-factory │ │ │ ├── -companion │ │ │ │ ├── index.html │ │ │ │ └── new-background-worker.html │ │ │ ├── -worker-factory.html │ │ │ └── index.html │ │ ├── -worker │ │ │ ├── execute-and-resume.html │ │ │ ├── execute.html │ │ │ ├── index.html │ │ │ └── terminate.html │ │ ├── index.html │ │ ├── is-main-thread.html │ │ └── to-immutable.html │ │ ├── index.html │ │ └── package-list ├── gradle.properties ├── settings.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── concurrency │ │ │ ├── AtomicReference.kt │ │ │ ├── LooperWorker.kt │ │ │ ├── MutexLock.kt │ │ │ ├── NativeFuture.kt │ │ │ ├── ReadWriteLock.kt │ │ │ ├── Utilities.kt │ │ │ └── WorkerFactory.kt │ └── resources │ │ └── .keep │ ├── androidTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── concurrency │ │ │ └── FutureAndroidTests.kt │ └── resources │ │ └── .keep │ ├── commonMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── concurrency │ │ │ ├── AtomicReference.kt │ │ │ ├── Future.kt │ │ │ ├── Immutability.kt │ │ │ ├── Job.kt │ │ │ ├── JobDispatcher.kt │ │ │ ├── JobFuture.kt │ │ │ ├── MutexLock.kt │ │ │ ├── NativeFuture.kt │ │ │ ├── ReadWriteLock.kt │ │ │ ├── ResumableJob.kt │ │ │ ├── Utilities.kt │ │ │ ├── ValueFuture.kt │ │ │ ├── Worker.kt │ │ │ └── WorkerFactory.kt │ └── resources │ │ └── .keep │ ├── commonTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── concurrency │ │ │ ├── AtomicReferenceTests.kt │ │ │ ├── FutureTests.kt │ │ │ ├── ImmutabilityTests.kt │ │ │ ├── JobDispatcherTests.kt │ │ │ ├── LockTests.kt │ │ │ ├── UtilitiesTests.kt │ │ │ ├── WorkerFactoryTests.kt │ │ │ └── WorkerTests.kt │ └── resources │ │ └── .keep │ ├── iosMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── concurrency │ │ │ ├── AtomicReference.kt │ │ │ ├── BackgroundWorker.kt │ │ │ ├── DeferredFuture.kt │ │ │ ├── MainWorker.kt │ │ │ ├── MutexLock.kt │ │ │ ├── NativeFuture.kt │ │ │ ├── ReadWriteLock.kt │ │ │ ├── WorkerFactory.kt │ │ │ └── utilities.kt │ └── resources │ │ └── .keep │ ├── iosTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── concurrency │ │ │ ├── FutureIosTests.kt │ │ │ └── JobDispatcherIosTests.kt │ └── resources │ │ ├── .keep │ │ └── Info.plist │ └── main │ └── AndroidManifest.xml ├── credentials.gradle.kts ├── docs ├── README.md ├── deploy.sh ├── docs │ ├── .vuepress │ │ ├── components │ │ │ └── hello.vue │ │ ├── config.js │ │ ├── public │ │ │ └── assets │ │ │ │ ├── hero.jpeg │ │ │ │ └── logo.png │ │ └── styles │ │ │ ├── index.styl │ │ │ └── palette.styl │ ├── README.md │ ├── cache │ │ └── README.md │ ├── concurrency │ │ └── README.md │ ├── fs │ │ └── README.md │ └── graphql │ │ ├── README.md │ │ ├── assets │ │ ├── link.svg │ │ └── overall-architecture.svg │ │ ├── concepts.md │ │ └── installation.md ├── package.json └── yarn.lock ├── fs ├── build.gradle.kts ├── docs │ ├── -search.html │ ├── images │ │ ├── arrow_down.svg │ │ ├── docs_logo.svg │ │ ├── logo-icon.svg │ │ └── logo-text.svg │ ├── navigation.html │ ├── scripts │ │ ├── clipboard.js │ │ ├── main.js │ │ ├── main.js.map │ │ ├── navigation-pane.json │ │ ├── navigationLoader.js │ │ ├── pages.js │ │ ├── platformContentHandler.js │ │ ├── search.js │ │ └── sourceset_dependencies.js │ ├── styles │ │ ├── jetbrains-mono.css │ │ └── style.css │ └── suparnatural-fs │ │ ├── com.suparnatural.core.fs │ │ ├── -content-encoding │ │ │ ├── -ascii │ │ │ │ └── index.html │ │ │ ├── -base64 │ │ │ │ └── index.html │ │ │ ├── -utf8 │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── -file-system-provider │ │ │ ├── -file-system-provider.html │ │ │ ├── bootstrap.html │ │ │ └── index.html │ │ ├── -file-system │ │ │ ├── append-file.html │ │ │ ├── copy-file.html │ │ │ ├── exists.html │ │ │ ├── index.html │ │ │ ├── mkdir.html │ │ │ ├── move-file.html │ │ │ ├── read-dir.html │ │ │ ├── read-file.html │ │ │ ├── stat.html │ │ │ ├── touch.html │ │ │ ├── unlink.html │ │ │ └── write-file.html │ │ ├── -file-type │ │ │ ├── -directory │ │ │ │ └── index.html │ │ │ ├── -regular │ │ │ │ └── index.html │ │ │ ├── -unknown │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── -path-component │ │ │ ├── -path-component.html │ │ │ ├── by-appending.html │ │ │ ├── index.html │ │ │ └── to-string.html │ │ ├── -path │ │ │ ├── -companion │ │ │ │ ├── from-url-string.html │ │ │ │ ├── from-url.html │ │ │ │ ├── index.html │ │ │ │ ├── simplified.html │ │ │ │ └── url-from-string.html │ │ │ ├── -path.html │ │ │ ├── index.html │ │ │ └── to-string.html │ │ ├── -stat-result │ │ │ ├── -stat-result.html │ │ │ ├── component1.html │ │ │ ├── component2.html │ │ │ ├── component3.html │ │ │ ├── component4.html │ │ │ ├── component5.html │ │ │ ├── component6.html │ │ │ ├── component7.html │ │ │ ├── copy.html │ │ │ └── index.html │ │ ├── from-data.html │ │ ├── index.html │ │ ├── to-byte-array.html │ │ ├── to-data.html │ │ └── to-n-s-data.html │ │ ├── index.html │ │ └── package-list ├── gradle.properties ├── settings.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ ├── .keep │ │ └── com.suparnatural.core.fs │ │ │ ├── FileSystem.kt │ │ │ ├── FileSystemProvider.kt │ │ │ └── Path.kt │ └── resources │ │ └── .keep │ ├── androidTest │ ├── kotlin │ │ ├── .keep │ │ └── com.suparnatural.core.fs │ │ │ └── FileSystemAndroidTests.kt │ └── resources │ │ └── .keep │ ├── commonMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── fs │ │ │ ├── ContentEncoding.kt │ │ │ ├── FileSystem.kt │ │ │ ├── Path.kt │ │ │ └── StatResult.kt │ └── resources │ │ └── .keep │ ├── commonTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── fs │ │ │ └── test.kt │ └── resources │ │ └── .keep │ ├── iosMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── fs │ │ │ ├── FileSystem.kt │ │ │ ├── NsDataUtils.kt │ │ │ └── Path.kt │ └── resources │ │ └── .keep │ ├── iosTest │ ├── kotlin │ │ ├── .keep │ │ └── com.suparnatural.core.fs │ │ │ └── FileSystemIosTests.kt │ └── resources │ │ ├── .keep │ │ └── Info.plist │ ├── jsMain │ └── kotlin │ │ ├── com │ │ └── suparnatural │ │ │ └── core │ │ │ └── fs │ │ │ ├── FileSystem.kt │ │ │ └── Path.kt │ │ └── externals │ │ └── kotlin-multiplatform-projects-fs │ │ └── src │ │ ├── index.module_ncp.kt │ │ └── index.ncp.module_ncp.kt │ ├── jsTest │ └── kotlin │ │ ├── .keep │ │ └── com │ │ └── suparnatural │ │ └── core │ │ └── fs │ │ └── FileSystemJsTests.kt │ ├── jvmMain │ └── kotlin │ │ └── com │ │ └── suparnatural │ │ └── core │ │ └── fs │ │ ├── FileSystem.kt │ │ └── Path.kt │ ├── jvmTest │ └── kotlin │ │ ├── .keep │ │ └── com │ │ └── suparnatural │ │ └── core │ │ └── fs │ │ └── FileSystemJvmTests.kt │ └── main │ └── AndroidManifest.xml ├── gradle.properties ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── graphql-plugin ├── README.md ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ └── main │ ├── kotlin │ └── com │ │ └── suparnatural │ │ └── plugins │ │ └── graphql │ │ ├── GraphQlPlugin.kt │ │ ├── models │ │ ├── Arg.kt │ │ ├── Container.kt │ │ ├── Field.kt │ │ ├── FieldGroup.kt │ │ ├── Fragment.kt │ │ ├── Operation.kt │ │ └── TypeUsed.kt │ │ └── processors │ │ ├── FieldGroupProcessor.kt │ │ ├── FragmentProcessor.kt │ │ ├── OperationsProcessor.kt │ │ ├── TypeProcessor.kt │ │ └── utils.kt │ └── resources │ └── apollo-tooling.sh ├── graphql ├── README.md ├── build.gradle.kts ├── docs │ ├── -search.html │ ├── images │ │ ├── arrow_down.svg │ │ ├── docs_logo.svg │ │ ├── logo-icon.svg │ │ └── logo-text.svg │ ├── navigation.html │ ├── scripts │ │ ├── clipboard.js │ │ ├── main.js │ │ ├── main.js.map │ │ ├── navigation-pane.json │ │ ├── navigationLoader.js │ │ ├── pages.js │ │ ├── platformContentHandler.js │ │ ├── search.js │ │ └── sourceset_dependencies.js │ ├── styles │ │ ├── jetbrains-mono.css │ │ └── style.css │ └── suparnatural-graphql │ │ ├── com.suparnatural.core.graphql │ │ ├── -even-odd-link │ │ │ ├── -even-odd-link.html │ │ │ ├── execute.html │ │ │ └── index.html │ │ ├── -fetcher │ │ │ ├── fetch.html │ │ │ └── index.html │ │ ├── -graph-ql-client-error │ │ │ ├── -i-n-v-a-l-i-d_-r-e-s-p-o-n-s-e │ │ │ │ └── index.html │ │ │ ├── -m-a-l-f-o-r-m-e-d_-b-o-d-y │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── -graph-ql-client-failure-response │ │ │ ├── -graph-ql-client-failure-response.html │ │ │ ├── component1.html │ │ │ ├── component2.html │ │ │ ├── copy.html │ │ │ └── index.html │ │ ├── -graph-ql-client │ │ │ ├── -graph-ql-client.html │ │ │ ├── execute.html │ │ │ └── index.html │ │ ├── -graph-ql-link │ │ │ └── index.html │ │ ├── -graph-ql-operation │ │ │ ├── -graph-ql-operation.html │ │ │ └── index.html │ │ ├── -graph-ql-request │ │ │ ├── -graph-ql-request.html │ │ │ ├── component1.html │ │ │ ├── component2.html │ │ │ ├── component3.html │ │ │ ├── copy.html │ │ │ └── index.html │ │ ├── -graph-ql-response-error │ │ │ ├── -graph-ql-response-error.html │ │ │ ├── -location │ │ │ │ ├── -location.html │ │ │ │ ├── component1.html │ │ │ │ ├── component2.html │ │ │ │ ├── copy.html │ │ │ │ └── index.html │ │ │ ├── component1.html │ │ │ ├── component2.html │ │ │ ├── component3.html │ │ │ ├── component4.html │ │ │ ├── copy.html │ │ │ └── index.html │ │ ├── -graph-ql-response │ │ │ ├── -graph-ql-response.html │ │ │ ├── component1.html │ │ │ ├── component2.html │ │ │ ├── component3.html │ │ │ ├── copy.html │ │ │ └── index.html │ │ ├── -http-fetch-request │ │ │ ├── -http-fetch-request.html │ │ │ └── index.html │ │ ├── -http-fetch-response │ │ │ ├── -http-fetch-response.html │ │ │ └── index.html │ │ ├── -http-fetcher │ │ │ └── index.html │ │ ├── -json-http-fetch-request │ │ │ ├── -json-http-fetch-request.html │ │ │ └── index.html │ │ ├── -json-http-fetch-response │ │ │ ├── -json-http-fetch-response.html │ │ │ └── index.html │ │ ├── -json-http-fetcher │ │ │ └── index.html │ │ ├── -json-http-graph-ql-client │ │ │ ├── -json-http-graph-ql-client.html │ │ │ ├── execute.html │ │ │ └── index.html │ │ ├── -json-http-graph-ql-link │ │ │ ├── -json-http-graph-ql-link.html │ │ │ ├── execute.html │ │ │ └── index.html │ │ ├── -link │ │ │ ├── execute.html │ │ │ └── index.html │ │ ├── -native-fetcher │ │ │ ├── -native-fetcher.html │ │ │ ├── fetch.html │ │ │ └── index.html │ │ ├── -result │ │ │ ├── -failure │ │ │ │ ├── -failure.html │ │ │ │ ├── component1.html │ │ │ │ ├── component2.html │ │ │ │ ├── copy.html │ │ │ │ └── index.html │ │ │ ├── -success │ │ │ │ ├── -success.html │ │ │ │ ├── component1.html │ │ │ │ ├── copy.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── -rx-runtime-provider │ │ │ └── index.html │ │ ├── -string-generator-link │ │ │ ├── -string-generator-link.html │ │ │ ├── execute.html │ │ │ └── index.html │ │ ├── -string-to-int-link │ │ │ ├── -string-to-int-link.html │ │ │ ├── execute.html │ │ │ └── index.html │ │ ├── concat.html │ │ ├── index.html │ │ └── split.html │ │ ├── index.html │ │ └── package-list ├── gradle.properties ├── settings.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── graphql │ │ │ └── RxRuntimeProvider.kt │ └── resources │ │ └── .keep │ ├── androidTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── commonMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── graphql │ │ │ ├── Examples.kt │ │ │ ├── Fetcher.kt │ │ │ ├── GraphQlClient.kt │ │ │ ├── GraphQlOperation.kt │ │ │ ├── JsonHttp.kt │ │ │ ├── Link.kt │ │ │ ├── Result.kt │ │ │ └── RxRuntimeProvider.kt │ └── resources │ │ └── .keep │ ├── commonTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── graphql │ │ │ ├── GraphQlTests.kt │ │ │ └── TestSchema.kt │ └── resources │ │ └── .keep │ ├── iosMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── graphql │ │ │ └── RxRuntimeProvider.kt │ └── resources │ │ └── .keep │ ├── iosTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ ├── .keep │ │ └── Info.plist │ ├── jvmMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── graphql │ │ │ └── RxRuntimeProvider.kt │ └── resources │ │ └── .keep │ ├── jvmTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ └── main │ └── AndroidManifest.xml ├── rx-runtime-reaktive ├── README.md ├── build.gradle.kts ├── docs │ ├── -search.html │ ├── images │ │ ├── arrow_down.svg │ │ ├── docs_logo.svg │ │ ├── logo-icon.svg │ │ └── logo-text.svg │ ├── navigation.html │ ├── scripts │ │ ├── clipboard.js │ │ ├── main.js │ │ ├── main.js.map │ │ ├── navigation-pane.json │ │ ├── navigationLoader.js │ │ ├── pages.js │ │ ├── platformContentHandler.js │ │ ├── search.js │ │ └── sourceset_dependencies.js │ ├── styles │ │ ├── jetbrains-mono.css │ │ └── style.css │ └── suparnatural-rx-runtime-reaktive │ │ ├── com.suparnatural.runtime.rx.reaktive │ │ ├── -reaktive-observable-factory │ │ │ ├── -reaktive-observable-factory.html │ │ │ ├── index.html │ │ │ └── of.html │ │ ├── -reaktive-observable │ │ │ ├── -reaktive-observable.html │ │ │ ├── filter.html │ │ │ ├── index.html │ │ │ ├── map.html │ │ │ ├── reduce.html │ │ │ └── subscribe.html │ │ ├── -reaktive-publish-subject-factory │ │ │ ├── -reaktive-publish-subject-factory.html │ │ │ ├── create.html │ │ │ └── index.html │ │ ├── -reaktive-publish-subject │ │ │ ├── -reaktive-publish-subject.html │ │ │ ├── as-observable.html │ │ │ ├── index.html │ │ │ ├── on-complete.html │ │ │ ├── on-error.html │ │ │ └── on-next.html │ │ └── index.html │ │ ├── index.html │ │ └── package-list ├── gradle.properties ├── settings.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── androidTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── commonMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── runtime │ │ │ └── rx │ │ │ └── reaktive │ │ │ └── Reaktive.kt │ └── resources │ │ └── .keep │ ├── commonTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── runtime │ │ │ └── rx │ │ │ └── reaktive │ │ │ └── ReaktiveTests.kt │ └── resources │ │ └── .keep │ ├── iosMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── iosTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ ├── .keep │ │ └── Info.plist │ ├── jvmMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── jvmTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ └── main │ └── AndroidManifest.xml ├── rx ├── README.md ├── build.gradle.kts ├── docs │ ├── -search.html │ ├── images │ │ ├── arrow_down.svg │ │ ├── docs_logo.svg │ │ ├── logo-icon.svg │ │ └── logo-text.svg │ ├── navigation.html │ ├── scripts │ │ ├── clipboard.js │ │ ├── main.js │ │ ├── main.js.map │ │ ├── navigation-pane.json │ │ ├── navigationLoader.js │ │ ├── pages.js │ │ ├── platformContentHandler.js │ │ ├── search.js │ │ └── sourceset_dependencies.js │ ├── styles │ │ ├── jetbrains-mono.css │ │ └── style.css │ └── suparnatural-rx │ │ ├── com.suparnatural.core.rx │ │ ├── -observable-factory │ │ │ ├── index.html │ │ │ └── of.html │ │ ├── -observable │ │ │ ├── filter.html │ │ │ ├── index.html │ │ │ ├── map.html │ │ │ ├── reduce.html │ │ │ └── subscribe.html │ │ ├── -publish-subject-factory │ │ │ ├── create.html │ │ │ └── index.html │ │ ├── -publish-subject │ │ │ ├── as-observable.html │ │ │ ├── index.html │ │ │ ├── on-complete.html │ │ │ ├── on-error.html │ │ │ └── on-next.html │ │ └── index.html │ │ ├── index.html │ │ └── package-list ├── gradle.properties ├── settings.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── androidTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── commonMain │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── rx │ │ │ └── Observable.kt │ └── resources │ │ └── .keep │ ├── commonTest │ ├── kotlin │ │ ├── .keep │ │ └── com │ │ │ └── suparnatural │ │ │ └── core │ │ │ └── rx │ │ │ └── RxTests.kt │ └── resources │ │ └── .keep │ ├── iosMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── iosTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ ├── .keep │ │ └── Info.plist │ ├── jvmMain │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ ├── jvmTest │ ├── kotlin │ │ └── .keep │ └── resources │ │ └── .keep │ └── main │ └── AndroidManifest.xml ├── settings.gradle.kts └── utilities ├── build.gradle.kts ├── docs ├── -search.html ├── images │ ├── arrow_down.svg │ ├── docs_logo.svg │ ├── logo-icon.svg │ └── logo-text.svg ├── navigation.html ├── scripts │ ├── clipboard.js │ ├── main.js │ ├── main.js.map │ ├── navigation-pane.json │ ├── navigationLoader.js │ ├── pages.js │ ├── platformContentHandler.js │ ├── search.js │ └── sourceset_dependencies.js ├── styles │ ├── jetbrains-mono.css │ └── style.css └── suparnatural-utilities │ ├── com.suparnatural.core.utilities │ ├── -module-provider │ │ ├── -module-provider.html │ │ ├── attach-info.html │ │ ├── bootstrap.html │ │ ├── delete.html │ │ ├── get-type.html │ │ ├── index.html │ │ ├── insert.html │ │ ├── on-create.html │ │ ├── query.html │ │ └── update.html │ ├── index.html │ ├── measure-nano-time.html │ ├── measure-time-micros.html │ └── measure-time-millis.html │ ├── index.html │ └── package-list ├── gradle.properties ├── settings.gradle.kts └── src ├── androidMain ├── kotlin │ ├── .keep │ └── com │ │ └── suparnatural │ │ └── core │ │ └── utilities │ │ ├── ModuleProvider.kt │ │ └── actuals.kt └── resources │ └── .keep ├── androidTest ├── kotlin │ └── .keep └── resources │ └── .keep ├── commonMain ├── kotlin │ ├── .keep │ └── com │ │ └── suparnatural │ │ └── core │ │ └── utilities │ │ └── expects.kt └── resources │ └── .keep ├── commonTest ├── kotlin │ ├── .keep │ └── com │ │ └── suparnatural │ │ └── core │ │ └── utilities │ │ └── test.kt └── resources │ └── .keep ├── iosMain ├── kotlin │ ├── .keep │ └── com │ │ └── suparnatural │ │ └── core │ │ └── utilities │ │ └── actuals.kt └── resources │ └── .keep ├── iosTest ├── kotlin │ └── .keep └── resources │ ├── .keep │ └── Info.plist ├── jvmMain ├── kotlin │ ├── .keep │ └── com │ │ └── suparnatural │ │ └── core │ │ └── utilities │ │ └── measureTimeMillis.kt └── resources │ └── .keep ├── jvmTest ├── kotlin │ └── .keep └── resources │ └── .keep └── main └── AndroidManifest.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request--existing-platforms-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/.github/ISSUE_TEMPLATE/feature-request--existing-platforms-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/.github/ISSUE_TEMPLATE/new-platform.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/workflows/build-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/.github/workflows/build-all.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/Changelog.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/README.md -------------------------------------------------------------------------------- /cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/README.md -------------------------------------------------------------------------------- /cache/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/build.gradle.kts -------------------------------------------------------------------------------- /cache/cache.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/cache.podspec -------------------------------------------------------------------------------- /cache/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/style.css -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/alltypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/alltypes/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-manager/cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-manager/cache.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-manager/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-manager/initialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-manager/initialize.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-replacement-policy/cache-size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-replacement-policy/cache-size.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-replacement-policy/evict-unsafe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-replacement-policy/evict-unsafe.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-replacement-policy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-replacement-policy/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/persist-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/persist-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/terminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/terminate.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/unlink-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-blocking-worker/unlink-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/terminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/terminate.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-non-blocking-worker/worker.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-preprocessor/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-preprocessor/archive.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-preprocessor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-preprocessor/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-preprocessor/unarchive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-preprocessor/unarchive.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/persist-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/persist-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/terminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/terminate.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/unlink-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store-worker/unlink-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/blocking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/blocking.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/fetch-all-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/fetch-all-objects.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/flush-and-close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/flush-and-close.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/persist-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/persist-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/preprocessors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/preprocessors.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/unlink-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/unlink-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/wipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache-store/wipe.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/add-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/add-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/get-all-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/get-all-objects.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/get-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/get-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/hash-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/hash-code.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/persistent-stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/persistent-stores.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/rehydrate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/rehydrate.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/remove-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/remove-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/replacement-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/replacement-policy.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cache/size.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/key.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/next.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/obj.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/previous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable-container/previous.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable/cache-key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable/cache-key.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable/serialize-for-persistence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-cacheable/serialize-for-persistence.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/blocking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/blocking.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/fetch-all-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/fetch-all-objects.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/flush-and-close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/flush-and-close.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/location.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/persist-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/persist-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/preprocessors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/preprocessors.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/unlink-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/unlink-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/wipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-disk-store/wipe.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/cache-size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/cache-size.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/evict-unsafe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/evict-unsafe.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-fifo-cache-replacement-policy/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/add-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/add-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/get-all-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/get-all-objects.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/hash-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/hash-code.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/lock.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/persistent-stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/persistent-stores.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/rehydrate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/rehydrate.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/remove-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/remove-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/replacement-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/replacement-policy.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-in-memory-cache/size.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/add-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/add-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/get-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/get-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/remove-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-linear-probing-cache/remove-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/cache-key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/cache-key.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/key.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/serialize-for-persistence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/serialize-for-persistence.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-raw-cacheable/value.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/-init-.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/first.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/fourth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/fourth.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/second.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/third.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/-quintuple/third.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/add-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/add-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/get-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/get-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/remove-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/-robin-hood-probing-cache/remove-object.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/com.suparnatural.core.cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/com.suparnatural.core.cache/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/index.html -------------------------------------------------------------------------------- /cache/docs/suparnatural-cache/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/docs/suparnatural-cache/package-list -------------------------------------------------------------------------------- /cache/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/gradle.properties -------------------------------------------------------------------------------- /cache/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/settings.gradle.kts -------------------------------------------------------------------------------- /cache/src/androidMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/androidMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/androidTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/androidTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/Cache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/Cache.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheManager.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheReplacementPolicy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheReplacementPolicy.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStore.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStoreBlockingWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStoreBlockingWorker.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStoreNonBlockingWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStoreNonBlockingWorker.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStorePreprocessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStorePreprocessor.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStoreWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheStoreWorker.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/Cacheable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/Cacheable.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheableContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/CacheableContainer.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/DiskStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/DiskStore.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/FifoCacheReplacementPolicy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/FifoCacheReplacementPolicy.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/InMemoryCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/InMemoryCache.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/LinearProbingCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/LinearProbingCache.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/PlaceholderCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/PlaceholderCache.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/RawCacheable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/RawCacheable.kt -------------------------------------------------------------------------------- /cache/src/commonMain/kotlin/com/suparnatural/core/cache/RobinHoodProbingCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonMain/kotlin/com/suparnatural/core/cache/RobinHoodProbingCache.kt -------------------------------------------------------------------------------- /cache/src/commonMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/commonTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/commonTest/kotlin/com/suparnatural/core/cache/test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/commonTest/kotlin/com/suparnatural/core/cache/test.kt -------------------------------------------------------------------------------- /cache/src/commonTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/iosMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/iosMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/iosTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/iosTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/src/iosTest/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/iosTest/resources/Info.plist -------------------------------------------------------------------------------- /cache/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/cache/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /concurrency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/README.md -------------------------------------------------------------------------------- /concurrency/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/build.gradle.kts -------------------------------------------------------------------------------- /concurrency/docs/-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/-search.html -------------------------------------------------------------------------------- /concurrency/docs/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/images/arrow_down.svg -------------------------------------------------------------------------------- /concurrency/docs/images/docs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/images/docs_logo.svg -------------------------------------------------------------------------------- /concurrency/docs/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/images/logo-icon.svg -------------------------------------------------------------------------------- /concurrency/docs/images/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/images/logo-text.svg -------------------------------------------------------------------------------- /concurrency/docs/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/navigation.html -------------------------------------------------------------------------------- /concurrency/docs/scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/clipboard.js -------------------------------------------------------------------------------- /concurrency/docs/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/main.js -------------------------------------------------------------------------------- /concurrency/docs/scripts/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/main.js.map -------------------------------------------------------------------------------- /concurrency/docs/scripts/navigation-pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/navigation-pane.json -------------------------------------------------------------------------------- /concurrency/docs/scripts/navigationLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/navigationLoader.js -------------------------------------------------------------------------------- /concurrency/docs/scripts/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/pages.js -------------------------------------------------------------------------------- /concurrency/docs/scripts/platformContentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/platformContentHandler.js -------------------------------------------------------------------------------- /concurrency/docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/search.js -------------------------------------------------------------------------------- /concurrency/docs/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/scripts/sourceset_dependencies.js -------------------------------------------------------------------------------- /concurrency/docs/styles/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/styles/jetbrains-mono.css -------------------------------------------------------------------------------- /concurrency/docs/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/styles/style.css -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-atomic-reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-atomic-reference/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-deferred-future/await.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-deferred-future/await.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-deferred-future/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-deferred-future/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-future/await.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-future/await.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-future/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-future/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-immutability/get-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-immutability/get-value.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-immutability/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-immutability/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-immutability/set-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-immutability/set-value.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-dispatcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-dispatcher/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-future/-job-future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-future/-job-future.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-future/await.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-future/await.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-future/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job-future/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job/-companion/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job/-companion/create.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job/-companion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job/-companion/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-job/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-looper-worker/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-looper-worker/execute.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-looper-worker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-looper-worker/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-main-worker/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-main-worker/execute.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-main-worker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-main-worker/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-main-worker/terminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-main-worker/terminate.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/-mutex-lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/-mutex-lock.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/destroy.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/lock.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/try-lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/try-lock.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/unlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-mutex-lock/unlock.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-native-future/await.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-native-future/await.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-native-future/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-native-future/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-read-write-lock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-read-write-lock/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-resumable-job/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-resumable-job/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-value-future/await.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-value-future/await.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-value-future/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-value-future/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker-factory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker-factory/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker/execute.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker/terminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/-worker/terminate.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/is-main-thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/is-main-thread.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/to-immutable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/com.suparnatural.core.concurrency/to-immutable.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/index.html -------------------------------------------------------------------------------- /concurrency/docs/suparnatural-concurrency/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/docs/suparnatural-concurrency/package-list -------------------------------------------------------------------------------- /concurrency/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/gradle.properties -------------------------------------------------------------------------------- /concurrency/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/settings.gradle.kts -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/AtomicReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/AtomicReference.kt -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/LooperWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/LooperWorker.kt -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/MutexLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/MutexLock.kt -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/NativeFuture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/NativeFuture.kt -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/ReadWriteLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/ReadWriteLock.kt -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/Utilities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/Utilities.kt -------------------------------------------------------------------------------- /concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/WorkerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidMain/kotlin/com/suparnatural/core/concurrency/WorkerFactory.kt -------------------------------------------------------------------------------- /concurrency/src/androidMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/androidTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/androidTest/kotlin/com/suparnatural/core/concurrency/FutureAndroidTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/androidTest/kotlin/com/suparnatural/core/concurrency/FutureAndroidTests.kt -------------------------------------------------------------------------------- /concurrency/src/androidTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/AtomicReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/AtomicReference.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Future.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Future.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Immutability.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Immutability.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Job.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Job.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/JobDispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/JobDispatcher.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/JobFuture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/JobFuture.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/MutexLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/MutexLock.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/NativeFuture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/NativeFuture.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/ReadWriteLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/ReadWriteLock.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/ResumableJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/ResumableJob.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Utilities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Utilities.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/ValueFuture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/ValueFuture.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Worker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/Worker.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/WorkerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonMain/kotlin/com/suparnatural/core/concurrency/WorkerFactory.kt -------------------------------------------------------------------------------- /concurrency/src/commonMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/AtomicReferenceTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/AtomicReferenceTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/FutureTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/FutureTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/ImmutabilityTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/ImmutabilityTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/JobDispatcherTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/JobDispatcherTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/LockTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/LockTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/UtilitiesTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/UtilitiesTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/WorkerFactoryTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/WorkerFactoryTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/WorkerTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/commonTest/kotlin/com/suparnatural/core/concurrency/WorkerTests.kt -------------------------------------------------------------------------------- /concurrency/src/commonTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/AtomicReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/AtomicReference.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/BackgroundWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/BackgroundWorker.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/DeferredFuture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/DeferredFuture.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/MainWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/MainWorker.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/MutexLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/MutexLock.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/NativeFuture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/NativeFuture.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/ReadWriteLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/ReadWriteLock.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/WorkerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/WorkerFactory.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/utilities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosMain/kotlin/com/suparnatural/core/concurrency/utilities.kt -------------------------------------------------------------------------------- /concurrency/src/iosMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/iosTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/iosTest/kotlin/com/suparnatural/core/concurrency/FutureIosTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosTest/kotlin/com/suparnatural/core/concurrency/FutureIosTests.kt -------------------------------------------------------------------------------- /concurrency/src/iosTest/kotlin/com/suparnatural/core/concurrency/JobDispatcherIosTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosTest/kotlin/com/suparnatural/core/concurrency/JobDispatcherIosTests.kt -------------------------------------------------------------------------------- /concurrency/src/iosTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /concurrency/src/iosTest/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/iosTest/resources/Info.plist -------------------------------------------------------------------------------- /concurrency/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/concurrency/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /credentials.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/credentials.gradle.kts -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # Docs 2 | -------------------------------------------------------------------------------- /docs/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/deploy.sh -------------------------------------------------------------------------------- /docs/docs/.vuepress/components/hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/.vuepress/components/hello.vue -------------------------------------------------------------------------------- /docs/docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/docs/.vuepress/public/assets/hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/.vuepress/public/assets/hero.jpeg -------------------------------------------------------------------------------- /docs/docs/.vuepress/public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/.vuepress/public/assets/logo.png -------------------------------------------------------------------------------- /docs/docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- 1 | $accentColor = #7832BA -------------------------------------------------------------------------------- /docs/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/README.md -------------------------------------------------------------------------------- /docs/docs/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/cache/README.md -------------------------------------------------------------------------------- /docs/docs/concurrency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/concurrency/README.md -------------------------------------------------------------------------------- /docs/docs/fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/fs/README.md -------------------------------------------------------------------------------- /docs/docs/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/graphql/README.md -------------------------------------------------------------------------------- /docs/docs/graphql/assets/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/graphql/assets/link.svg -------------------------------------------------------------------------------- /docs/docs/graphql/assets/overall-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/graphql/assets/overall-architecture.svg -------------------------------------------------------------------------------- /docs/docs/graphql/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/graphql/concepts.md -------------------------------------------------------------------------------- /docs/docs/graphql/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/docs/graphql/installation.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /fs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/build.gradle.kts -------------------------------------------------------------------------------- /fs/docs/-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/-search.html -------------------------------------------------------------------------------- /fs/docs/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/images/arrow_down.svg -------------------------------------------------------------------------------- /fs/docs/images/docs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/images/docs_logo.svg -------------------------------------------------------------------------------- /fs/docs/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/images/logo-icon.svg -------------------------------------------------------------------------------- /fs/docs/images/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/images/logo-text.svg -------------------------------------------------------------------------------- /fs/docs/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/navigation.html -------------------------------------------------------------------------------- /fs/docs/scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/clipboard.js -------------------------------------------------------------------------------- /fs/docs/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/main.js -------------------------------------------------------------------------------- /fs/docs/scripts/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/main.js.map -------------------------------------------------------------------------------- /fs/docs/scripts/navigation-pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/navigation-pane.json -------------------------------------------------------------------------------- /fs/docs/scripts/navigationLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/navigationLoader.js -------------------------------------------------------------------------------- /fs/docs/scripts/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/pages.js -------------------------------------------------------------------------------- /fs/docs/scripts/platformContentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/platformContentHandler.js -------------------------------------------------------------------------------- /fs/docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/search.js -------------------------------------------------------------------------------- /fs/docs/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/scripts/sourceset_dependencies.js -------------------------------------------------------------------------------- /fs/docs/styles/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/styles/jetbrains-mono.css -------------------------------------------------------------------------------- /fs/docs/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/styles/style.css -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/-ascii/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/-ascii/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/-base64/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/-base64/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/-utf8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/-utf8/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-content-encoding/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system-provider/-file-system-provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system-provider/-file-system-provider.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system-provider/bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system-provider/bootstrap.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system-provider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system-provider/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/append-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/append-file.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/copy-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/copy-file.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/exists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/exists.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/mkdir.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/move-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/move-file.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/read-dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/read-dir.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/read-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/read-file.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/stat.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/touch.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/unlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/unlink.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/write-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-system/write-file.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/-directory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/-directory/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/-regular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/-regular/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/-unknown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/-unknown/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-file-type/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/-path-component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/-path-component.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/by-appending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/by-appending.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path-component/to-string.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/from-url-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/from-url-string.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/from-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/from-url.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/simplified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/simplified.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/url-from-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-companion/url-from-string.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/-path.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-path/to-string.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/-stat-result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/-stat-result.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component1.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component2.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component3.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component4.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component5.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component6.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/component7.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/copy.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/-stat-result/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/from-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/from-data.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/to-byte-array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/to-byte-array.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/to-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/to-data.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/com.suparnatural.core.fs/to-n-s-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/com.suparnatural.core.fs/to-n-s-data.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/index.html -------------------------------------------------------------------------------- /fs/docs/suparnatural-fs/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/docs/suparnatural-fs/package-list -------------------------------------------------------------------------------- /fs/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/gradle.properties -------------------------------------------------------------------------------- /fs/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/settings.gradle.kts -------------------------------------------------------------------------------- /fs/src/androidMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/androidMain/kotlin/com.suparnatural.core.fs/FileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/androidMain/kotlin/com.suparnatural.core.fs/FileSystem.kt -------------------------------------------------------------------------------- /fs/src/androidMain/kotlin/com.suparnatural.core.fs/FileSystemProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/androidMain/kotlin/com.suparnatural.core.fs/FileSystemProvider.kt -------------------------------------------------------------------------------- /fs/src/androidMain/kotlin/com.suparnatural.core.fs/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/androidMain/kotlin/com.suparnatural.core.fs/Path.kt -------------------------------------------------------------------------------- /fs/src/androidMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/androidTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/androidTest/kotlin/com.suparnatural.core.fs/FileSystemAndroidTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/androidTest/kotlin/com.suparnatural.core.fs/FileSystemAndroidTests.kt -------------------------------------------------------------------------------- /fs/src/androidTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/commonMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/commonMain/kotlin/com/suparnatural/core/fs/ContentEncoding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/commonMain/kotlin/com/suparnatural/core/fs/ContentEncoding.kt -------------------------------------------------------------------------------- /fs/src/commonMain/kotlin/com/suparnatural/core/fs/FileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/commonMain/kotlin/com/suparnatural/core/fs/FileSystem.kt -------------------------------------------------------------------------------- /fs/src/commonMain/kotlin/com/suparnatural/core/fs/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/commonMain/kotlin/com/suparnatural/core/fs/Path.kt -------------------------------------------------------------------------------- /fs/src/commonMain/kotlin/com/suparnatural/core/fs/StatResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/commonMain/kotlin/com/suparnatural/core/fs/StatResult.kt -------------------------------------------------------------------------------- /fs/src/commonMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/commonTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/commonTest/kotlin/com/suparnatural/core/fs/test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/commonTest/kotlin/com/suparnatural/core/fs/test.kt -------------------------------------------------------------------------------- /fs/src/commonTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/iosMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/iosMain/kotlin/com/suparnatural/core/fs/FileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/iosMain/kotlin/com/suparnatural/core/fs/FileSystem.kt -------------------------------------------------------------------------------- /fs/src/iosMain/kotlin/com/suparnatural/core/fs/NsDataUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/iosMain/kotlin/com/suparnatural/core/fs/NsDataUtils.kt -------------------------------------------------------------------------------- /fs/src/iosMain/kotlin/com/suparnatural/core/fs/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/iosMain/kotlin/com/suparnatural/core/fs/Path.kt -------------------------------------------------------------------------------- /fs/src/iosMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/iosTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/iosTest/kotlin/com.suparnatural.core.fs/FileSystemIosTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/iosTest/kotlin/com.suparnatural.core.fs/FileSystemIosTests.kt -------------------------------------------------------------------------------- /fs/src/iosTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/iosTest/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/iosTest/resources/Info.plist -------------------------------------------------------------------------------- /fs/src/jsMain/kotlin/com/suparnatural/core/fs/FileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jsMain/kotlin/com/suparnatural/core/fs/FileSystem.kt -------------------------------------------------------------------------------- /fs/src/jsMain/kotlin/com/suparnatural/core/fs/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jsMain/kotlin/com/suparnatural/core/fs/Path.kt -------------------------------------------------------------------------------- /fs/src/jsMain/kotlin/externals/kotlin-multiplatform-projects-fs/src/index.module_ncp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jsMain/kotlin/externals/kotlin-multiplatform-projects-fs/src/index.module_ncp.kt -------------------------------------------------------------------------------- /fs/src/jsMain/kotlin/externals/kotlin-multiplatform-projects-fs/src/index.ncp.module_ncp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jsMain/kotlin/externals/kotlin-multiplatform-projects-fs/src/index.ncp.module_ncp.kt -------------------------------------------------------------------------------- /fs/src/jsTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/jsTest/kotlin/com/suparnatural/core/fs/FileSystemJsTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jsTest/kotlin/com/suparnatural/core/fs/FileSystemJsTests.kt -------------------------------------------------------------------------------- /fs/src/jvmMain/kotlin/com/suparnatural/core/fs/FileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jvmMain/kotlin/com/suparnatural/core/fs/FileSystem.kt -------------------------------------------------------------------------------- /fs/src/jvmMain/kotlin/com/suparnatural/core/fs/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jvmMain/kotlin/com/suparnatural/core/fs/Path.kt -------------------------------------------------------------------------------- /fs/src/jvmTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs/src/jvmTest/kotlin/com/suparnatural/core/fs/FileSystemJvmTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/jvmTest/kotlin/com/suparnatural/core/fs/FileSystemJvmTests.kt -------------------------------------------------------------------------------- /fs/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/fs/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/gradlew.bat -------------------------------------------------------------------------------- /graphql-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/README.md -------------------------------------------------------------------------------- /graphql-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/build.gradle.kts -------------------------------------------------------------------------------- /graphql-plugin/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /graphql-plugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /graphql-plugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/gradlew -------------------------------------------------------------------------------- /graphql-plugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/gradlew.bat -------------------------------------------------------------------------------- /graphql-plugin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'graphql-plugin' 2 | -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/GraphQlPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/GraphQlPlugin.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Arg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Arg.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Container.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Container.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Field.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/FieldGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/FieldGroup.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Fragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Fragment.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Operation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/Operation.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/TypeUsed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/models/TypeUsed.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/FieldGroupProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/FieldGroupProcessor.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/FragmentProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/FragmentProcessor.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/OperationsProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/OperationsProcessor.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/TypeProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/TypeProcessor.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/kotlin/com/suparnatural/plugins/graphql/processors/utils.kt -------------------------------------------------------------------------------- /graphql-plugin/src/main/resources/apollo-tooling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql-plugin/src/main/resources/apollo-tooling.sh -------------------------------------------------------------------------------- /graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/README.md -------------------------------------------------------------------------------- /graphql/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/build.gradle.kts -------------------------------------------------------------------------------- /graphql/docs/-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/-search.html -------------------------------------------------------------------------------- /graphql/docs/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/images/arrow_down.svg -------------------------------------------------------------------------------- /graphql/docs/images/docs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/images/docs_logo.svg -------------------------------------------------------------------------------- /graphql/docs/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/images/logo-icon.svg -------------------------------------------------------------------------------- /graphql/docs/images/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/images/logo-text.svg -------------------------------------------------------------------------------- /graphql/docs/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/navigation.html -------------------------------------------------------------------------------- /graphql/docs/scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/clipboard.js -------------------------------------------------------------------------------- /graphql/docs/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/main.js -------------------------------------------------------------------------------- /graphql/docs/scripts/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/main.js.map -------------------------------------------------------------------------------- /graphql/docs/scripts/navigation-pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/navigation-pane.json -------------------------------------------------------------------------------- /graphql/docs/scripts/navigationLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/navigationLoader.js -------------------------------------------------------------------------------- /graphql/docs/scripts/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/pages.js -------------------------------------------------------------------------------- /graphql/docs/scripts/platformContentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/platformContentHandler.js -------------------------------------------------------------------------------- /graphql/docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/search.js -------------------------------------------------------------------------------- /graphql/docs/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/scripts/sourceset_dependencies.js -------------------------------------------------------------------------------- /graphql/docs/styles/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/styles/jetbrains-mono.css -------------------------------------------------------------------------------- /graphql/docs/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/styles/style.css -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-even-odd-link/-even-odd-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-even-odd-link/-even-odd-link.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-even-odd-link/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-even-odd-link/execute.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-even-odd-link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-even-odd-link/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-fetcher/fetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-fetcher/fetch.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-fetcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-fetcher/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client-error/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client/-graph-ql-client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client/-graph-ql-client.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client/execute.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-client/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-link/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-operation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-operation/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/-graph-ql-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/-graph-ql-request.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/component1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/component1.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/component2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/component2.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/component3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/component3.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/copy.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-request/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component1.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component2.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component3.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/component4.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/copy.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response-error/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/component1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/component1.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/component2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/component2.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/component3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/component3.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/copy.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-graph-ql-response/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-http-fetch-request/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-http-fetch-request/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-http-fetch-response/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-http-fetch-response/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-http-fetcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-http-fetcher/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-fetch-request/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-fetch-request/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-fetch-response/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-fetch-response/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-fetcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-fetcher/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-client/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-client/execute.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-client/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-link/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-link/execute.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-json-http-graph-ql-link/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-link/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-link/execute.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-link/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-native-fetcher/-native-fetcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-native-fetcher/-native-fetcher.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-native-fetcher/fetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-native-fetcher/fetch.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-native-fetcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-native-fetcher/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/-failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/-failure.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/component1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/component1.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/component2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/component2.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/copy.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-failure/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/-success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/-success.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/component1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/component1.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/copy.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/-success/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-result/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-rx-runtime-provider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-rx-runtime-provider/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-generator-link/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-generator-link/execute.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-generator-link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-generator-link/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-to-int-link/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-to-int-link/execute.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-to-int-link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/-string-to-int-link/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/concat.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/com.suparnatural.core.graphql/split.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/index.html -------------------------------------------------------------------------------- /graphql/docs/suparnatural-graphql/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/docs/suparnatural-graphql/package-list -------------------------------------------------------------------------------- /graphql/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/gradle.properties -------------------------------------------------------------------------------- /graphql/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/settings.gradle.kts -------------------------------------------------------------------------------- /graphql/src/androidMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Android Main Source -------------------------------------------------------------------------------- /graphql/src/androidMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/androidMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt -------------------------------------------------------------------------------- /graphql/src/androidMain/resources/.keep: -------------------------------------------------------------------------------- 1 | Android Main Resources -------------------------------------------------------------------------------- /graphql/src/androidTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Android Test Sources 2 | -------------------------------------------------------------------------------- /graphql/src/androidTest/resources/.keep: -------------------------------------------------------------------------------- 1 | Android Test Resources -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Examples.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Examples.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Fetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Fetcher.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/GraphQlClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/GraphQlClient.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/GraphQlOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/GraphQlOperation.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/JsonHttp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/JsonHttp.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Link.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Link.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Result.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/Result.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt -------------------------------------------------------------------------------- /graphql/src/commonMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/commonTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Common Test Source 2 | -------------------------------------------------------------------------------- /graphql/src/commonTest/kotlin/com/suparnatural/core/graphql/GraphQlTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonTest/kotlin/com/suparnatural/core/graphql/GraphQlTests.kt -------------------------------------------------------------------------------- /graphql/src/commonTest/kotlin/com/suparnatural/core/graphql/TestSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/commonTest/kotlin/com/suparnatural/core/graphql/TestSchema.kt -------------------------------------------------------------------------------- /graphql/src/commonTest/resources/.keep: -------------------------------------------------------------------------------- 1 | Common Test resources 2 | -------------------------------------------------------------------------------- /graphql/src/iosMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/iosMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/iosMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt -------------------------------------------------------------------------------- /graphql/src/iosMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/iosTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/iosTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/iosTest/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/iosTest/resources/Info.plist -------------------------------------------------------------------------------- /graphql/src/jvmMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/jvmMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/jvmMain/kotlin/com/suparnatural/core/graphql/RxRuntimeProvider.kt -------------------------------------------------------------------------------- /graphql/src/jvmMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/jvmTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/jvmTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/graphql/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rx-runtime-reaktive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/README.md -------------------------------------------------------------------------------- /rx-runtime-reaktive/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/build.gradle.kts -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/-search.html -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/images/arrow_down.svg -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/images/docs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/images/docs_logo.svg -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/images/logo-icon.svg -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/images/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/images/logo-text.svg -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/navigation.html -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/clipboard.js -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/main.js -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/main.js.map -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/navigation-pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/navigation-pane.json -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/navigationLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/navigationLoader.js -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/pages.js -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/platformContentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/platformContentHandler.js -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/search.js -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/scripts/sourceset_dependencies.js -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/styles/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/styles/jetbrains-mono.css -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/styles/style.css -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/suparnatural-rx-runtime-reaktive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/suparnatural-rx-runtime-reaktive/index.html -------------------------------------------------------------------------------- /rx-runtime-reaktive/docs/suparnatural-rx-runtime-reaktive/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/docs/suparnatural-rx-runtime-reaktive/package-list -------------------------------------------------------------------------------- /rx-runtime-reaktive/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/gradle.properties -------------------------------------------------------------------------------- /rx-runtime-reaktive/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/settings.gradle.kts -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/androidMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Android Main Source -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/androidMain/resources/.keep: -------------------------------------------------------------------------------- 1 | Android Main Resources -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/androidTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Android Test Sources 2 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/androidTest/resources/.keep: -------------------------------------------------------------------------------- 1 | Android Test Resources -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/commonMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/commonMain/kotlin/com/suparnatural/runtime/rx/reaktive/Reaktive.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/src/commonMain/kotlin/com/suparnatural/runtime/rx/reaktive/Reaktive.kt -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/commonMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/commonTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Common Test Source 2 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/commonTest/kotlin/com/suparnatural/runtime/rx/reaktive/ReaktiveTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/src/commonTest/kotlin/com/suparnatural/runtime/rx/reaktive/ReaktiveTests.kt -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/commonTest/resources/.keep: -------------------------------------------------------------------------------- 1 | Common Test resources 2 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/iosMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/iosMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/iosTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/iosTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/iosTest/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/src/iosTest/resources/Info.plist -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/jvmMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/jvmMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/jvmTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/jvmTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx-runtime-reaktive/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx-runtime-reaktive/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/README.md -------------------------------------------------------------------------------- /rx/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/build.gradle.kts -------------------------------------------------------------------------------- /rx/docs/-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/-search.html -------------------------------------------------------------------------------- /rx/docs/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/images/arrow_down.svg -------------------------------------------------------------------------------- /rx/docs/images/docs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/images/docs_logo.svg -------------------------------------------------------------------------------- /rx/docs/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/images/logo-icon.svg -------------------------------------------------------------------------------- /rx/docs/images/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/images/logo-text.svg -------------------------------------------------------------------------------- /rx/docs/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/navigation.html -------------------------------------------------------------------------------- /rx/docs/scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/clipboard.js -------------------------------------------------------------------------------- /rx/docs/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/main.js -------------------------------------------------------------------------------- /rx/docs/scripts/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/main.js.map -------------------------------------------------------------------------------- /rx/docs/scripts/navigation-pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/navigation-pane.json -------------------------------------------------------------------------------- /rx/docs/scripts/navigationLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/navigationLoader.js -------------------------------------------------------------------------------- /rx/docs/scripts/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/pages.js -------------------------------------------------------------------------------- /rx/docs/scripts/platformContentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/platformContentHandler.js -------------------------------------------------------------------------------- /rx/docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/search.js -------------------------------------------------------------------------------- /rx/docs/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/scripts/sourceset_dependencies.js -------------------------------------------------------------------------------- /rx/docs/styles/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/styles/jetbrains-mono.css -------------------------------------------------------------------------------- /rx/docs/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/styles/style.css -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable-factory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable-factory/index.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable-factory/of.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable-factory/of.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/filter.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/index.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/map.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/reduce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/reduce.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/subscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-observable/subscribe.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject-factory/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject-factory/create.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject-factory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject-factory/index.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/as-observable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/as-observable.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/index.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/on-complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/on-complete.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/on-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/on-error.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/on-next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/-publish-subject/on-next.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/com.suparnatural.core.rx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/com.suparnatural.core.rx/index.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/index.html -------------------------------------------------------------------------------- /rx/docs/suparnatural-rx/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/docs/suparnatural-rx/package-list -------------------------------------------------------------------------------- /rx/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/gradle.properties -------------------------------------------------------------------------------- /rx/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/settings.gradle.kts -------------------------------------------------------------------------------- /rx/src/androidMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Android Main Source -------------------------------------------------------------------------------- /rx/src/androidMain/resources/.keep: -------------------------------------------------------------------------------- 1 | Android Main Resources -------------------------------------------------------------------------------- /rx/src/androidTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Android Test Sources 2 | -------------------------------------------------------------------------------- /rx/src/androidTest/resources/.keep: -------------------------------------------------------------------------------- 1 | Android Test Resources -------------------------------------------------------------------------------- /rx/src/commonMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/commonMain/kotlin/com/suparnatural/core/rx/Observable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/src/commonMain/kotlin/com/suparnatural/core/rx/Observable.kt -------------------------------------------------------------------------------- /rx/src/commonMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/commonTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | Common Test Source 2 | -------------------------------------------------------------------------------- /rx/src/commonTest/kotlin/com/suparnatural/core/rx/RxTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/src/commonTest/kotlin/com/suparnatural/core/rx/RxTests.kt -------------------------------------------------------------------------------- /rx/src/commonTest/resources/.keep: -------------------------------------------------------------------------------- 1 | Common Test resources 2 | -------------------------------------------------------------------------------- /rx/src/iosMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/iosMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/iosTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/iosTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/iosTest/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/src/iosTest/resources/Info.plist -------------------------------------------------------------------------------- /rx/src/jvmMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/jvmMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/jvmTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/jvmTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rx/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/rx/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /utilities/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/build.gradle.kts -------------------------------------------------------------------------------- /utilities/docs/-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/-search.html -------------------------------------------------------------------------------- /utilities/docs/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/images/arrow_down.svg -------------------------------------------------------------------------------- /utilities/docs/images/docs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/images/docs_logo.svg -------------------------------------------------------------------------------- /utilities/docs/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/images/logo-icon.svg -------------------------------------------------------------------------------- /utilities/docs/images/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/images/logo-text.svg -------------------------------------------------------------------------------- /utilities/docs/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/navigation.html -------------------------------------------------------------------------------- /utilities/docs/scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/clipboard.js -------------------------------------------------------------------------------- /utilities/docs/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/main.js -------------------------------------------------------------------------------- /utilities/docs/scripts/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/main.js.map -------------------------------------------------------------------------------- /utilities/docs/scripts/navigation-pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/navigation-pane.json -------------------------------------------------------------------------------- /utilities/docs/scripts/navigationLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/navigationLoader.js -------------------------------------------------------------------------------- /utilities/docs/scripts/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/pages.js -------------------------------------------------------------------------------- /utilities/docs/scripts/platformContentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/platformContentHandler.js -------------------------------------------------------------------------------- /utilities/docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/search.js -------------------------------------------------------------------------------- /utilities/docs/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/scripts/sourceset_dependencies.js -------------------------------------------------------------------------------- /utilities/docs/styles/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/styles/jetbrains-mono.css -------------------------------------------------------------------------------- /utilities/docs/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/styles/style.css -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/attach-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/attach-info.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/bootstrap.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/delete.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/get-type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/get-type.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/index.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/insert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/insert.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/on-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/on-create.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/query.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/-module-provider/update.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/index.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/measure-nano-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/measure-nano-time.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/measure-time-micros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/measure-time-micros.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/measure-time-millis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/com.suparnatural.core.utilities/measure-time-millis.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/index.html -------------------------------------------------------------------------------- /utilities/docs/suparnatural-utilities/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/docs/suparnatural-utilities/package-list -------------------------------------------------------------------------------- /utilities/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/gradle.properties -------------------------------------------------------------------------------- /utilities/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/settings.gradle.kts -------------------------------------------------------------------------------- /utilities/src/androidMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/androidMain/kotlin/com/suparnatural/core/utilities/ModuleProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/androidMain/kotlin/com/suparnatural/core/utilities/ModuleProvider.kt -------------------------------------------------------------------------------- /utilities/src/androidMain/kotlin/com/suparnatural/core/utilities/actuals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/androidMain/kotlin/com/suparnatural/core/utilities/actuals.kt -------------------------------------------------------------------------------- /utilities/src/androidMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/androidTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/androidTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/commonMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/commonMain/kotlin/com/suparnatural/core/utilities/expects.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/commonMain/kotlin/com/suparnatural/core/utilities/expects.kt -------------------------------------------------------------------------------- /utilities/src/commonMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/commonTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/commonTest/kotlin/com/suparnatural/core/utilities/test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/commonTest/kotlin/com/suparnatural/core/utilities/test.kt -------------------------------------------------------------------------------- /utilities/src/commonTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/iosMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/iosMain/kotlin/com/suparnatural/core/utilities/actuals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/iosMain/kotlin/com/suparnatural/core/utilities/actuals.kt -------------------------------------------------------------------------------- /utilities/src/iosMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/iosTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/iosTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/iosTest/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/iosTest/resources/Info.plist -------------------------------------------------------------------------------- /utilities/src/jvmMain/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/jvmMain/kotlin/com/suparnatural/core/utilities/measureTimeMillis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/jvmMain/kotlin/com/suparnatural/core/utilities/measureTimeMillis.kt -------------------------------------------------------------------------------- /utilities/src/jvmMain/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/jvmTest/kotlin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/jvmTest/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suparngp/kotlin-multiplatform-projects/HEAD/utilities/src/main/AndroidManifest.xml --------------------------------------------------------------------------------