File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
cabal-install/src/Distribution/Client/Utils Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -117,8 +117,6 @@ advance n z@(Zipper xs ys)
117117 (y : ys') -> advance (n - 1 ) $ Zipper (y : xs) ys'
118118
119119-- | Like 'List', but for 'NubList'.
120- --
121- -- @since 3.2.0.0
122120newtype NubList' sep b a = NubList' { _getNubList :: NubList a }
123121
124122-- | 'alaNubList' and 'alaNubList'' are simply 'NubList'' constructor, with additional phantom
@@ -132,14 +130,10 @@ newtype NubList' sep b a = NubList' {_getNubList :: NubList a}
132130--
133131-- >>> unpack' (alaNubList' FSep Token) <$> eitherParsec "foo bar foo"
134132-- Right (toNubList ["bar","foo"])
135- --
136- -- @since 3.2.0.0
137133alaNubList :: sep -> NubList a -> NubList' sep (Identity a ) a
138134alaNubList _ = NubList'
139135
140136-- | More general version of 'alaNubList'.
141- --
142- -- @since 3.2.0.0
143137alaNubList' :: sep -> (a -> b ) -> NubList a -> NubList' sep b a
144138alaNubList' _ _ = NubList'
145139
You can’t perform that action at this time.
0 commit comments