Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created December 23, 2015 14:41
Show Gist options
  • Save codedmart/81755a9411df6640e303 to your computer and use it in GitHub Desktop.
Save codedmart/81755a9411df6640e303 to your computer and use it in GitHub Desktop.
Prelude Text.Regex.Applicative
λ> :set -XOverloadedStrings
Prelude Text.Regex.Applicative
λ> let number = "one" *> pure 1 <|> "two" *> pure 2
<interactive>:7:5:
Could not deduce (Data.String.IsString (f a0))
from the context (Num a,
Data.String.IsString (f a2),
Data.String.IsString (f a3),
Alternative f)
bound by the inferred type for ‘number’:
(Num a, Data.String.IsString (f a2), Data.String.IsString (f a3),
Alternative f) =>
f a
at <interactive>:7:5-50
The type variable ‘a0’ is ambiguous
When checking that ‘number’ has the inferred type
number :: forall (f :: * -> *) a a1 a2.
(Num a, Data.String.IsString (f a1), Data.String.IsString (f a2),
Alternative f) =>
f a
Probable cause: the inferred type is ambiguous
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment