差分
2つのリストの差を取得するにはData.Listの(\\)を使います。
code: (haskell)
import Data.List
同じ要素が複数ある場合は、双方のリストにある同じ要素の数が反映されます。
code: (haskell)
Mapの場合も同様、ひとつ目のマップにしかない要素は(\\)オペレーターで見つけることができます。
code: (haskell)
> import Data.Map ((\\))
xs \\ ys
ys \\ xs
どちらか一方にしかない要素を見つけるにはdifferenceで取得した結果をunionすると求められます。
code: (haskell)
Map.union (xs \\ ys) (ys \\ xs)
differenceは(\\)の別名です。
code: (haskell)
Map.difference xs ys
Map.difference ys xs