packages feed

kempe-0.1.0.0: lib/maybe.kmp

type Maybe a { Just a | Nothing }

isJust : (Maybe a) -- Bool
       =: [
    { case
        | Just -> drop True
        | Nothing -> False
    }
]

isNothing : (Maybe a) -- Bool
          =: [
    { case
        | Nothing -> True
        | Just -> drop False
    }
]