This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +0
-69
lines changed
Expand file tree Collapse file tree 4 files changed +0
-69
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ module Control.Lens
1818 , tail
1919 , uncons
2020 , unsnoc
21- -- Each
22- , each
2321 -- Equality
2422 , simple
2523 , simply
@@ -165,7 +163,6 @@ module Control.Lens
165163
166164 import qualified Control.Lens.At as At
167165 import qualified Control.Lens.Cons as Cons
168- import qualified Control.Lens.Each as Each
169166 import qualified Control.Lens.Equality as Equality
170167 import qualified Control.Lens.Fold as Fold
171168 import qualified Control.Lens.Getter as Getter
@@ -202,9 +199,6 @@ module Control.Lens
202199 uncons = Cons. uncons
203200 unsnoc = Cons. unsnoc
204201
205- -- Each
206- each = Each. each
207-
208202 -- Equality
209203 simple = Equality. simple
210204 simply = Equality. simply
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9494 unsnoc :: forall a s. (Snoc s s a a) => s a -> Maybe (Tuple (s a) a)
9595
9696
97- ## Module Control.Lens.Each
98-
99- ### Type Classes
100-
101- class Each s t a b where
102- each :: Traversal s t a b
103-
104-
105- ### Type Class Instances
106-
107- instance eachArray :: Each [a] [b] a b
108-
109- instance eachTuple :: Each (Tuple a a) (Tuple b b) a b
110-
111-
11297## Module Control.Lens.Equality
11398
11499### Values
You can’t perform that action at this time.
0 commit comments