Skip to content

Commit 66d40a4

Browse files
fehrenbachLiamGoodacre
authored andcommitted
RProxy and RLProxy are defined in prelude already
1 parent 7aeb599 commit 66d40a4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Type/Row.purs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module Type.Row
2-
( RProxy(..)
3-
, module Prim.Row
2+
( module Prim.Row
3+
, module RProxy
44
, module Prim.RowList
5-
, RLProxy(..)
5+
, module RLProxy
66
, class ListToRow
77
, class RowListRemove
88
, class RowListSet
@@ -17,10 +17,10 @@ import Prim.RowList (kind RowList, Cons, Nil, class RowToList)
1717
import Type.Equality (class TypeEquals)
1818
import Type.Data.Symbol as Symbol
1919
import Type.Data.Boolean as Boolean
20+
import Type.Data.Row (RProxy(..)) as RProxy
21+
import Type.Data.RowList (RLProxy)
22+
import Type.Data.RowList (RLProxy(..)) as RLProxy
2023

21-
data RProxy (row :: # Type) = RProxy
22-
23-
data RLProxy (rowList :: RowList) = RLProxy
2424

2525
-- | Convert a RowList to a row of types.
2626
-- | The inverse of this operation is `RowToList`.

0 commit comments

Comments
 (0)