aboutsummaryrefslogtreecommitdiff
path: root/aoc-2020-gleam/src/ext/resultx.gleam
blob: 2067291a048681daa5b199fb88a2be9a98cff2b3 (plain)
1
2
3
4
5
6
pub fn assert_unwrap(result: Result(t, _)) -> t {
  case result {
    Ok(value) -> value
    _ -> panic
  }
}