Module

Partial

Package
purescript-partial
Repository
purescript/purescript-partial

Some partial helper functions.

#crash Source

crash :: forall a. Partial => a

A partial function which crashes on any input with a default message.

#crashWith Source

crashWith :: forall a. Partial => String -> a

A partial function which crashes on any input with the specified message.