strict-0.1: Data/Strict.hs
-----------------------------------------------------------------------------
-- |
-- Module : Data.Strict
-- Copyright : (c) 2006-2007 Roman Leshchinskiy
-- License : BSD-style (see the file LICENSE)
--
-- Maintainer : Roman Leshchinskiy <rl@cse.unsw.edu.au>
-- Stability : experimental
-- Portability : portable
--
-- Strict versions of some standard Haskell types.
--
-----------------------------------------------------------------------------
module Data.Strict (
module Data.Strict.Tuple
, module Data.Strict.Maybe
, module Data.Strict.Either
) where
import Data.Strict.Tuple
import Data.Strict.Maybe
import Data.Strict.Either