Skip to content

Instantly share code, notes, and snippets.

@mwotton
Created July 24, 2014 02:52
Show Gist options
  • Save mwotton/c1bf236251424a887964 to your computer and use it in GitHub Desktop.
Save mwotton/c1bf236251424a887964 to your computer and use it in GitHub Desktop.
delete :: Ord k => k -> Map k a -> Map k a
delete = go
where
go :: Ord k => k -> Map k a -> Map k a
go _ Tip = Tip
go k (Bin _ kx x l r) =
case compare k kx of
LT -> balanceR kx x (go k l) r
GT -> balanceL kx x l (go k r)
EQ -> glue l r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment