{-# OPTIONS_GHC -Wall -Werror #-} ---------------------------------------------------------------- -- ~ 2008.07.25 -- | -- Module : Data.List.Extras -- Copyright : Copyright (c) 2007--2008 wren ng thornton -- License : BSD3 -- Maintainer : wren@community.haskell.org -- Stability : stable -- Portability : portable -- -- This module provides a single header for all @Data.List.Extras.*@ modules ---------------------------------------------------------------- module Data.List.Extras ( module Data.List.Extras.LazyLength , module Data.List.Extras.Pair , module Data.List.Extras.Argmax ) where import Data.List.Extras.LazyLength import Data.List.Extras.Pair import Data.List.Extras.Argmax ---------------------------------------------------------------- ----------------------------------------------------------- fin.