1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
-----------------------------------------------------------------------------
-- |
-- 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
|