Skip to content

dcadea/jresult

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jResult

Inspired by 🦀 Rust

Build Status

Result pattern

This library implements a design pattern called Result. It provides a convenient representation of an operation outcome. By wrapping return types into Result developers can gracefully react to both success - Ok and failure - Err. Errors as values force programmers to deal with undesirable behavior at the earliest stage which results in a more reliable, resilient and robust system.

Quick start

Dependency

Maven:

<dependency>
  <groupId>io.github.dcadea</groupId>
  <artifactId>jresult</artifactId>
  <version>${version}</version>
</dependency>

Gradle:

dependencies {
    implementation 'io.github.dcadea:jresult:${version}'
}

About

No description, website, or topics provided.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages