papa-0.4.0: src/Papa/Witherable/Renamed.hs
{-# OPTIONS_GHC -Wall #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | Re-exports from Papa.Witherable with conflicting identifiers hidden.
--
-- Conflicts hidden:
-- - 'filter' (conflicts with Data.List.filter)
-- - 'catMaybes' (conflicts with Data.Maybe.catMaybes)
-- - 'mapMaybe' (conflicts with Data.Maybe.mapMaybe)
--
-- Use qualified imports when needed:
-- > import qualified Witherable as W
module Papa.Witherable.Renamed (
module Papa.Witherable.Witherable,
) where
import Papa.Witherable.Witherable hiding (catMaybes, filter, mapMaybe)