|
|
|
|
|
by dikaiosune
3669 days ago
|
|
Importantly, it's the Ok variant of the Result<(), SomeError> type, which is richer than a boolean because it carries information about why/where an operation failed, not just whether it succeeded or failed. It's similar to (but not identical to): public void someOperation() throws SomeException { ... }
|
|