|
| 1 | +{-# LANGUAGE Safe #-} |
| 2 | + |
| 3 | +{- | |
| 4 | +Copyright: (c) 019 Kowainik |
| 5 | +SPDX-License-Identifier: MIT |
| 6 | +Maintainer: Kowainik <xrom.xkov@gmail.com> |
| 7 | +
|
| 8 | +This module exports all extra-related stuff. |
| 9 | +-} |
| 10 | + |
| 11 | +module Relude.Extra |
| 12 | + ( module Relude.Extra.Bifunctor |
| 13 | + , module Relude.Extra.CallStack |
| 14 | + , module Relude.Extra.Enum |
| 15 | + , module Relude.Extra.Foldable |
| 16 | + , module Relude.Extra.Foldable1 |
| 17 | + , module Relude.Extra.Group |
| 18 | + , module Relude.Extra.Lens |
| 19 | + , module Relude.Extra.Map |
| 20 | + , module Relude.Extra.Newtype |
| 21 | + , module Relude.Extra.Tuple |
| 22 | + , module Relude.Extra.Type |
| 23 | + , module Relude.Extra.Validation |
| 24 | + ) where |
| 25 | + |
| 26 | +import Relude.Extra.Bifunctor |
| 27 | +import Relude.Extra.CallStack |
| 28 | +import Relude.Extra.Enum |
| 29 | +import Relude.Extra.Foldable |
| 30 | +import Relude.Extra.Foldable1 |
| 31 | +import Relude.Extra.Group |
| 32 | +import Relude.Extra.Lens |
| 33 | +import Relude.Extra.Map |
| 34 | +import Relude.Extra.Newtype |
| 35 | +import Relude.Extra.Tuple |
| 36 | +import Relude.Extra.Type |
| 37 | +import Relude.Extra.Validation |
0 commit comments