Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 805ff83

Browse files
committed
Moved Each to its own library.
1 parent 8717876 commit 805ff83

File tree

4 files changed

+0
-69
lines changed

4 files changed

+0
-69
lines changed

examples/Each.purs

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/Control/Lens.purs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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

src/Control/Lens/Each.purs

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/Control/Lens/README.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -94,21 +94,6 @@
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

0 commit comments

Comments
 (0)