練習問題 4.3.6
関数filterは
concatと
map
を使って以下のように定義できる.
filter p = concat . map box
where x = ...
boxを定義せよ.
filter p = concat . map box
where box x = [ x | p x ]
filterは
concatと
map
を使って以下のように定義できる.
filter p = concat . map box
where x = ...
boxを定義せよ.
filter p = concat . map box
where box x = [ x | p x ]