File tree 1 file changed +0
-6
lines changed
cabal-install/src/Distribution/Client/Utils 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)
117
117
(y : ys') -> advance (n - 1 ) $ Zipper (y : xs) ys'
118
118
119
119
-- | Like 'List', but for 'NubList'.
120
- --
121
- -- @since 3.2.0.0
122
120
newtype NubList' sep b a = NubList' { _getNubList :: NubList a }
123
121
124
122
-- | 'alaNubList' and 'alaNubList'' are simply 'NubList'' constructor, with additional phantom
@@ -132,14 +130,10 @@ newtype NubList' sep b a = NubList' {_getNubList :: NubList a}
132
130
--
133
131
-- >>> unpack' (alaNubList' FSep Token) <$> eitherParsec "foo bar foo"
134
132
-- Right (toNubList ["bar","foo"])
135
- --
136
- -- @since 3.2.0.0
137
133
alaNubList :: sep -> NubList a -> NubList' sep (Identity a ) a
138
134
alaNubList _ = NubList'
139
135
140
136
-- | More general version of 'alaNubList'.
141
- --
142
- -- @since 3.2.0.0
143
137
alaNubList' :: sep -> (a -> b ) -> NubList a -> NubList' sep b a
144
138
alaNubList' _ _ = NubList'
145
139
You can’t perform that action at this time.
0 commit comments