Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/therustifyer/modernjava
Modern types and operations for Java
https://github.com/therustifyer/modernjava
Last synced: about 11 hours ago
JSON representation
Modern types and operations for Java
- Host: GitHub
- URL: https://github.com/therustifyer/modernjava
- Owner: TheRustifyer
- Created: 2023-02-03T09:50:38.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-03T09:52:32.000Z (almost 2 years ago)
- Last Synced: 2024-01-20T10:45:37.646Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MODERN JAVA
New fresh ideas and non-native implementations 4J
## Core types
### Result
The result implementation aims to mimic the behaviour of the powerful
`Result` enumerated type found on the `std` library
of the Rust language.Result allows to implement a functional kind of code approach to
tasks or operations that, due its inherent implementation, may be
fallible or that they may throw some exception>For see the implementation, go take a look at the `result` folder on the *src/main/java/eu/zerodaycode/core/result* package
>For a usage example, go take a look at the `test` folder on the *src/test/java/result* package