Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Data/Map/Ordered.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
{-# LANGUAGE FlexibleInstances #-}

-- | An 'OMap' behaves much like a 'M.Map', with mostly the same asymptotics, but
-- also remembers the order that keys were inserted. All operations whose
-- asymptotics are worse than 'M.Map' have documentation saying so.
-- also remembers the order that keys were inserted (i.e., last in, first out). All
-- operations whose asymptotics are worse than 'M.Map' have documentation saying so.
module Data.Map.Ordered
( OMap
-- * Trivial maps
Expand Down
4 changes: 2 additions & 2 deletions Data/Set/Ordered.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
{-# LANGUAGE FlexibleInstances #-}

-- | An 'OSet' behaves much like a 'Set', with mostly the same asymptotics, but
-- also remembers the order that values were inserted. All operations whose
-- asymptotics are worse than 'Set' have documentation saying so.
-- also remembers the order that values were inserted (i.e., last in, first out).
-- All operations whose asymptotics are worse than 'Set' have documentation saying so.
module Data.Set.Ordered
( OSet
-- * Trivial sets
Expand Down