Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 244 Bytes

File metadata and controls

13 lines (8 loc) · 244 Bytes

Module Data.Maybe.Unsafe

fromJust

fromJust :: forall a. Maybe a -> a

A partial function that extracts the value from the Just data constructor. Passing Nothing to fromJust will throw an error at runtime.