mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
Adds get for Option[T]. (#8462)
This commit is contained in:
committed by
Andreas Rumpf
parent
aa1cdebdc2
commit
feda366d86
@@ -129,7 +129,7 @@ proc get*[T](self: Option[T]): T =
|
||||
## Returns contents of the Option. If it is none, then an exception is
|
||||
## thrown.
|
||||
if self.isNone:
|
||||
raise UnpackError(msg : "Can't obtain a value from a `none`")
|
||||
raise UnpackError(msg: "Can't obtain a value from a `none`")
|
||||
self.val
|
||||
|
||||
proc get*[T](self: Option[T], otherwise: T): T =
|
||||
@@ -139,6 +139,13 @@ proc get*[T](self: Option[T], otherwise: T): T =
|
||||
else:
|
||||
otherwise
|
||||
|
||||
proc get*[T](self: var Option[T]): var T =
|
||||
## Returns contents of the Option. If it is none, then an exception is
|
||||
## thrown.
|
||||
if self.isNone:
|
||||
raise UnpackError(msg: "Can't obtain a value from a `none`")
|
||||
return self.val
|
||||
|
||||
proc map*[T](self: Option[T], callback: proc (input: T)) =
|
||||
## Applies a callback to the value in this Option
|
||||
if self.isSome:
|
||||
|
||||
Reference in New Issue
Block a user