N
Size: a a a
N
KV
N
man xkeyboard-configKV
JS
ifnull :: Foldable t => t a -> b -> (t a -> b) -> b
ifnull x e f
| null x = e
| otherwise = f x
JS
JS
JS
fromMaybe e $ f x <$ guard (not $ null x)JS
JS
if null xs then
...................................
else
...............................................xs
JS
DB