Right package:Cabal-syntax

O(V + V'). Right-biased union, preferring entries from the second map when conflicts occur. nodeKey x = nodeKey (f x).
Explicitly 'All Rights Reserved', eg for proprietary software. The package may not be legally modified or redistributed by anyone but the rightsholder.
A right-biased version of listUnion. Example:
>>> listUnion [1,2,3,4,3] [2,1,1]
[1,2,3,4,3]
>>> listUnionRight [1,2,3,4,3] [2,1,1]
[4,3,2,1,1]
A right-biased version of ordNub. Example:
>>> ordNub [1,2,1] :: [Int]
[1,2]
>>> ordNubRight [1,2,1] :: [Int]
[2,1]