├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── benchmarks ├── build.gradle.kts ├── gradle.properties └── src │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ └── BindingBenchmark.kt │ └── jvmMain │ └── kotlin │ └── com │ └── github │ └── michaelbull │ └── result │ ├── ArrowBindingBenchmark.kt │ └── CoroutineBindingBenchmark.kt ├── example ├── build.gradle.kts └── src │ └── main │ ├── kotlin │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ └── example │ │ ├── Application.kt │ │ ├── model │ │ ├── domain │ │ │ ├── Customer.kt │ │ │ ├── DomainMessage.kt │ │ │ ├── EmailAddress.kt │ │ │ ├── Event.kt │ │ │ └── PersonalName.kt │ │ ├── dto │ │ │ └── CustomerDto.kt │ │ └── entity │ │ │ ├── CustomerEntity.kt │ │ │ └── CustomerId.kt │ │ ├── repository │ │ ├── CustomerRepository.kt │ │ ├── InMemoryCustomerRepository.kt │ │ └── Repository.kt │ │ └── service │ │ ├── CustomerService.kt │ │ ├── EmailAddressParser.kt │ │ └── PersonalNameParser.kt │ └── resources │ ├── application.conf │ └── logback.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── kotlin-js-store ├── wasm │ └── yarn.lock └── yarn.lock ├── kotlin-result-coroutines ├── build.gradle.kts ├── gradle.properties └── src │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ └── coroutines │ │ ├── CoroutineBinding.kt │ │ ├── ParZip.kt │ │ └── RunSuspendCatching.kt │ └── commonTest │ └── kotlin │ └── com │ └── github │ └── michaelbull │ └── result │ └── coroutines │ ├── AsyncCoroutineBindingTest.kt │ ├── CoroutineBindingTest.kt │ ├── ParZipTest.kt │ └── RunSuspendCatchingTest.kt ├── kotlin-result ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ ├── And.kt │ │ ├── Binding.kt │ │ ├── Factory.kt │ │ ├── Get.kt │ │ ├── Iterable.kt │ │ ├── Map.kt │ │ ├── On.kt │ │ ├── Or.kt │ │ ├── Recover.kt │ │ ├── Result.kt │ │ ├── ResultIterator.kt │ │ ├── Unwrap.kt │ │ ├── Zip.kt │ │ └── annotation │ │ ├── UnsafeResultErrorAccess.kt │ │ └── UnsafeResultValueAccess.kt │ ├── commonTest │ └── kotlin │ │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ ├── AndTest.kt │ │ ├── BindingTest.kt │ │ ├── FactoryTest.kt │ │ ├── GetTest.kt │ │ ├── IterableTest.kt │ │ ├── MapTest.kt │ │ ├── OnTest.kt │ │ ├── OrTest.kt │ │ ├── RecoverTest.kt │ │ ├── ResultIteratorTest.kt │ │ ├── UnwrapTest.kt │ │ └── ZipTest.kt │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ └── BindingException.kt │ ├── jvmMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ └── BindingException.kt │ ├── nativeMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── michaelbull │ │ └── result │ │ └── BindingException.kt │ └── wasmJsMain │ └── kotlin │ └── com │ └── github │ └── michaelbull │ └── result │ └── BindingException.kt └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat text eol=crlf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/benchmarks/build.gradle.kts -------------------------------------------------------------------------------- /benchmarks/gradle.properties: -------------------------------------------------------------------------------- 1 | description=Benchmarks for kotlin-result. 2 | -------------------------------------------------------------------------------- /benchmarks/src/commonMain/kotlin/com/github/michaelbull/result/BindingBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/benchmarks/src/commonMain/kotlin/com/github/michaelbull/result/BindingBenchmark.kt -------------------------------------------------------------------------------- /benchmarks/src/jvmMain/kotlin/com/github/michaelbull/result/ArrowBindingBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/benchmarks/src/jvmMain/kotlin/com/github/michaelbull/result/ArrowBindingBenchmark.kt -------------------------------------------------------------------------------- /benchmarks/src/jvmMain/kotlin/com/github/michaelbull/result/CoroutineBindingBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/benchmarks/src/jvmMain/kotlin/com/github/michaelbull/result/CoroutineBindingBenchmark.kt -------------------------------------------------------------------------------- /example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/build.gradle.kts -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/Application.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/Customer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/Customer.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/DomainMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/DomainMessage.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/EmailAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/EmailAddress.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/Event.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/PersonalName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/domain/PersonalName.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/dto/CustomerDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/dto/CustomerDto.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/entity/CustomerEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/entity/CustomerEntity.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/model/entity/CustomerId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/model/entity/CustomerId.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/repository/CustomerRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/repository/CustomerRepository.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/repository/InMemoryCustomerRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/repository/InMemoryCustomerRepository.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/repository/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/repository/Repository.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/service/CustomerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/service/CustomerService.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/service/EmailAddressParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/service/EmailAddressParser.kt -------------------------------------------------------------------------------- /example/src/main/kotlin/com/github/michaelbull/result/example/service/PersonalNameParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/kotlin/com/github/michaelbull/result/example/service/PersonalNameParser.kt -------------------------------------------------------------------------------- /example/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/resources/application.conf -------------------------------------------------------------------------------- /example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/gradlew.bat -------------------------------------------------------------------------------- /kotlin-js-store/wasm/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-js-store/wasm/yarn.lock -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /kotlin-result-coroutines/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/build.gradle.kts -------------------------------------------------------------------------------- /kotlin-result-coroutines/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/gradle.properties -------------------------------------------------------------------------------- /kotlin-result-coroutines/src/commonMain/kotlin/com/github/michaelbull/result/coroutines/CoroutineBinding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/src/commonMain/kotlin/com/github/michaelbull/result/coroutines/CoroutineBinding.kt -------------------------------------------------------------------------------- /kotlin-result-coroutines/src/commonMain/kotlin/com/github/michaelbull/result/coroutines/ParZip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/src/commonMain/kotlin/com/github/michaelbull/result/coroutines/ParZip.kt -------------------------------------------------------------------------------- /kotlin-result-coroutines/src/commonMain/kotlin/com/github/michaelbull/result/coroutines/RunSuspendCatching.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/src/commonMain/kotlin/com/github/michaelbull/result/coroutines/RunSuspendCatching.kt -------------------------------------------------------------------------------- /kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/AsyncCoroutineBindingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/AsyncCoroutineBindingTest.kt -------------------------------------------------------------------------------- /kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/CoroutineBindingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/CoroutineBindingTest.kt -------------------------------------------------------------------------------- /kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/ParZipTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/ParZipTest.kt -------------------------------------------------------------------------------- /kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/RunSuspendCatchingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result-coroutines/src/commonTest/kotlin/com/github/michaelbull/result/coroutines/RunSuspendCatchingTest.kt -------------------------------------------------------------------------------- /kotlin-result/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/build.gradle.kts -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/And.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/And.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Binding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Binding.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Factory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Factory.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Get.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Get.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Iterable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Iterable.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Map.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Map.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/On.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/On.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Or.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Or.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Recover.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Recover.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Result.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Result.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/ResultIterator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/ResultIterator.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Unwrap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Unwrap.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Zip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Zip.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/annotation/UnsafeResultErrorAccess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/annotation/UnsafeResultErrorAccess.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/annotation/UnsafeResultValueAccess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/annotation/UnsafeResultValueAccess.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/AndTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/AndTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/BindingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/BindingTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/FactoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/FactoryTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/GetTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/GetTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/IterableTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/IterableTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/MapTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/MapTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/OnTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/OnTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/OrTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/OrTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/RecoverTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/RecoverTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/ResultIteratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/ResultIteratorTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/UnwrapTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/UnwrapTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/ZipTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/ZipTest.kt -------------------------------------------------------------------------------- /kotlin-result/src/jsMain/kotlin/com/github/michaelbull/result/BindingException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/jsMain/kotlin/com/github/michaelbull/result/BindingException.kt -------------------------------------------------------------------------------- /kotlin-result/src/jvmMain/kotlin/com/github/michaelbull/result/BindingException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/jvmMain/kotlin/com/github/michaelbull/result/BindingException.kt -------------------------------------------------------------------------------- /kotlin-result/src/nativeMain/kotlin/com/github/michaelbull/result/BindingException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/nativeMain/kotlin/com/github/michaelbull/result/BindingException.kt -------------------------------------------------------------------------------- /kotlin-result/src/wasmJsMain/kotlin/com/github/michaelbull/result/BindingException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/kotlin-result/src/wasmJsMain/kotlin/com/github/michaelbull/result/BindingException.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbull/kotlin-result/HEAD/settings.gradle.kts --------------------------------------------------------------------------------