egison-4.0.0: lib/core/maybe.egi
--
--
-- Maybe (Option)
--
--
maybe a :=
matcher
| nothing as () with
| Nothing -> [()]
| _ -> []
| just $ as (a) with
| Just $x -> [x]
| _ -> []
| $ as (something) with
| $tgt -> [tgt]