-
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
Lines 24 to 34 in 798fcba
| NextStates( | |
| self.0 | |
| .lock() | |
| .unwrap() | |
| .next_states( | |
| current_memory_state.map(|x| x.0), | |
| desired_retention, | |
| days_elapsed, | |
| ) | |
| .unwrap(), | |
| ) |
use try block to rewrite them as
try {
x?
y?
}.unwrap()Can use nightly.
Reactions are currently unavailable