explicit export list for StackSet

This commit is contained in:
Don Stewart
2007-05-21 02:52:50 +00:00
parent d3d058345d
commit d28d4251e0

View File

@@ -74,7 +74,11 @@
-- needs to be well defined. Particular in relation to 'insert' and -- needs to be well defined. Particular in relation to 'insert' and
-- 'delete'. -- 'delete'.
-- --
module StackSet where {- all top level functions -} module StackSet (
StackSet(..), Workspace(..), Stack(..),
new, view, lookupWorkspace, peek, index, focusLeft, focusRight,
focusWindow, member, findIndex, insertLeft, delete, swap, shift
) where
import qualified Data.Map as M import qualified Data.Map as M
import Data.Maybe (listToMaybe) import Data.Maybe (listToMaybe)