https://github.com/therustifyer/modernjava
Modern types and operations for Java
https://github.com/therustifyer/modernjava
Last synced: 7 months 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-03T09:52:32.000Z (about 3 years ago)
- Last Synced: 2025-01-20T05:52:31.074Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 4.88 KB
- Stars: 1
- 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