diff package:dhall

Render the difference between two expressions
This module provides functionality for concisely displaying the difference between two expressions For example, this is used in type errors to explain why the actual type does not match the expected type
This type is a Doc enriched with a same flag to efficiently track if any difference was detected
Render the difference between the normal form of two expressions
Compute the difference of two Maps by subtracting all keys from the second Map from the first Map
>>> difference (fromList [("C",1),("B",2)]) (fromList [("B",3),("A",4)])
fromList [("C",1)]
Returns, in order, all elements of the first Set not present in the second. (It doesn't matter in what order the elements appear in the second Set.)