:: Either a a -> a package:MissingH
Take an Either, and return the value inside it
Take a Left to a value, crashes on a Right
Take a Right to a value, crashes on a Left
Pulls a
Right value out of an Either value. If the Either value
is Left, raises an exception with "error".