module Utils.Maybe
  ( isJust
  ) where

isJust : Maybe a -> Bool
isJust maybe =
  case maybe of
    Just _ -> True
    Nothing -> False