We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af2db11 commit 205838cCopy full SHA for 205838c
1 file changed
src/Data/String/CodePoints.purs
@@ -31,7 +31,6 @@ import Data.Array as Array
31
import Data.Char as Char
32
import Data.List (List(Cons, Nil), fromFoldable)
33
import Data.Maybe (Maybe(Just, Nothing))
34
-import Data.Newtype (class Newtype)
35
import Data.String as String
36
import Data.String.Unsafe as Unsafe
37
-- WARN: This list must be updated to re-export any exports added to Data.String. That makes me sad.
@@ -46,7 +45,6 @@ newtype CodePoint = CodePoint Int
46
45
47
derive instance eqCodePoint :: Eq CodePoint
48
derive instance ordCodePoint :: Ord CodePoint
49
-derive instance newtypeCodePoint :: Newtype CodePoint _
50
51
-- I would prefer that this smart constructor not need to exist and instead
52
-- CodePoint just implements Enum, but the Enum module already depends on this
0 commit comments