Why the difference in type-inference over the as-pattern in two similar function definitions? The Next CEO of Stack OverflowHow do I avoid writing this type of Haskell boilerplate codeHaskell: What is Weak Head Normal Form?Java's Interface and Haskell's type class: differences and similarities?Why is Scala's type inference not as powerful as Haskell's?Need some guidance on function type definitionHow Type inference work in presence of Functional DependenciesGetting associated type synonyms with template HaskellInferring function type from function definition Haskellwhy does my (alternative to !!) function have this typeType inference for polymorphic recursive functionsDefining function signature in GHCi
Shortening a title without changing its meaning
Man transported from Alternate World into ours by a Neutrino Detector
How exploitable/balanced is this homebrew spell: Spell Permanency?
Why did Batya get tzaraat?
Is a linearly independent set whose span is dense a Schauder basis?
What day is it again?
Read/write a pipe-delimited file line by line with some simple text manipulation
Are British MPs missing the point, with these 'Indicative Votes'?
What happens if you break a law in another country outside of that country?
Why did the Drakh emissary look so blurred in S04:E11 "Lines of Communication"?
Compilation of a 2d array and a 1d array
Can Sri Krishna be called 'a person'?
What does this strange code stamp on my passport mean?
pgfplots: How to draw a tangent graph below two others?
Is it a bad idea to plug the other end of ESD strap to wall ground?
Does Germany produce more waste than the US?
Masking layers by a vector polygon layer in QGIS
Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico
Car headlights in a world without electricity
The sum of any ten consecutive numbers from a fibonacci sequence is divisible by 11
Why did early computer designers eschew integers?
Compensation for working overtime on Saturdays
Why cannot we not say "I have been having a dog"?
How can I separate the number from the unit in argument?
Why the difference in type-inference over the as-pattern in two similar function definitions?
The Next CEO of Stack OverflowHow do I avoid writing this type of Haskell boilerplate codeHaskell: What is Weak Head Normal Form?Java's Interface and Haskell's type class: differences and similarities?Why is Scala's type inference not as powerful as Haskell's?Need some guidance on function type definitionHow Type inference work in presence of Functional DependenciesGetting associated type synonyms with template HaskellInferring function type from function definition Haskellwhy does my (alternative to !!) function have this typeType inference for polymorphic recursive functionsDefining function signature in GHCi
I have the following two similar function definitions:
left f (Left x) = Left (f x)
left _ (Right x) = Right x
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
When I check the type signatures of the two functions, I am confused by the following types:
ghci> :t left
left :: (t -> a) -> Either t b -> Either a b
ghci> :t left'
left' :: (a -> a) -> Either a b -> Either a b
I suppose left and left' should be of the same type signature, but the haskell's type inference gives me a suprise.
I can't figure out why the type signatures of left and left' are different. Can anybody give me some information? Thanks!
haskell type-signature
add a comment |
I have the following two similar function definitions:
left f (Left x) = Left (f x)
left _ (Right x) = Right x
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
When I check the type signatures of the two functions, I am confused by the following types:
ghci> :t left
left :: (t -> a) -> Either t b -> Either a b
ghci> :t left'
left' :: (a -> a) -> Either a b -> Either a b
I suppose left and left' should be of the same type signature, but the haskell's type inference gives me a suprise.
I can't figure out why the type signatures of left and left' are different. Can anybody give me some information? Thanks!
haskell type-signature
1
It looks like the first one might be a bit more flexible sincetcould conceivably equala.
– ChaosPandion
2 days ago
1
@ChaosPandion yes it is, but that's the mystery (to me as well when I've looked at it!) - it's saying the function inputfmust have the same input and output type, but there is nothing obvious in the function definition which would so constrainf. In fact the only line which differs in the two definitions doesn't referencefat all!
– Robin Zigmond
2 days ago
4
same thing happens with the definition offmapforConstbtw. the value is repackaged in a differentRight/Constconstructor (which is polymorphic in the other type).
– Will Ness
2 days ago
What is this "as-pattern" that you speak of?
– Peter Mortensen
2 days ago
1
@PeterMortensen An "as-pattern" is a pattern that uses the@symbol to assign a value to an identifier while also pattern matching on that value. Here that'sr@(Right _)
– 4castle
yesterday
add a comment |
I have the following two similar function definitions:
left f (Left x) = Left (f x)
left _ (Right x) = Right x
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
When I check the type signatures of the two functions, I am confused by the following types:
ghci> :t left
left :: (t -> a) -> Either t b -> Either a b
ghci> :t left'
left' :: (a -> a) -> Either a b -> Either a b
I suppose left and left' should be of the same type signature, but the haskell's type inference gives me a suprise.
I can't figure out why the type signatures of left and left' are different. Can anybody give me some information? Thanks!
haskell type-signature
I have the following two similar function definitions:
left f (Left x) = Left (f x)
left _ (Right x) = Right x
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
When I check the type signatures of the two functions, I am confused by the following types:
ghci> :t left
left :: (t -> a) -> Either t b -> Either a b
ghci> :t left'
left' :: (a -> a) -> Either a b -> Either a b
I suppose left and left' should be of the same type signature, but the haskell's type inference gives me a suprise.
I can't figure out why the type signatures of left and left' are different. Can anybody give me some information? Thanks!
haskell type-signature
haskell type-signature
edited 2 days ago
TrebledJ
3,48611228
3,48611228
asked 2 days ago
Z-Y.LZ-Y.L
480213
480213
1
It looks like the first one might be a bit more flexible sincetcould conceivably equala.
– ChaosPandion
2 days ago
1
@ChaosPandion yes it is, but that's the mystery (to me as well when I've looked at it!) - it's saying the function inputfmust have the same input and output type, but there is nothing obvious in the function definition which would so constrainf. In fact the only line which differs in the two definitions doesn't referencefat all!
– Robin Zigmond
2 days ago
4
same thing happens with the definition offmapforConstbtw. the value is repackaged in a differentRight/Constconstructor (which is polymorphic in the other type).
– Will Ness
2 days ago
What is this "as-pattern" that you speak of?
– Peter Mortensen
2 days ago
1
@PeterMortensen An "as-pattern" is a pattern that uses the@symbol to assign a value to an identifier while also pattern matching on that value. Here that'sr@(Right _)
– 4castle
yesterday
add a comment |
1
It looks like the first one might be a bit more flexible sincetcould conceivably equala.
– ChaosPandion
2 days ago
1
@ChaosPandion yes it is, but that's the mystery (to me as well when I've looked at it!) - it's saying the function inputfmust have the same input and output type, but there is nothing obvious in the function definition which would so constrainf. In fact the only line which differs in the two definitions doesn't referencefat all!
– Robin Zigmond
2 days ago
4
same thing happens with the definition offmapforConstbtw. the value is repackaged in a differentRight/Constconstructor (which is polymorphic in the other type).
– Will Ness
2 days ago
What is this "as-pattern" that you speak of?
– Peter Mortensen
2 days ago
1
@PeterMortensen An "as-pattern" is a pattern that uses the@symbol to assign a value to an identifier while also pattern matching on that value. Here that'sr@(Right _)
– 4castle
yesterday
1
1
It looks like the first one might be a bit more flexible since
t could conceivably equal a.– ChaosPandion
2 days ago
It looks like the first one might be a bit more flexible since
t could conceivably equal a.– ChaosPandion
2 days ago
1
1
@ChaosPandion yes it is, but that's the mystery (to me as well when I've looked at it!) - it's saying the function input
f must have the same input and output type, but there is nothing obvious in the function definition which would so constrain f. In fact the only line which differs in the two definitions doesn't reference f at all!– Robin Zigmond
2 days ago
@ChaosPandion yes it is, but that's the mystery (to me as well when I've looked at it!) - it's saying the function input
f must have the same input and output type, but there is nothing obvious in the function definition which would so constrain f. In fact the only line which differs in the two definitions doesn't reference f at all!– Robin Zigmond
2 days ago
4
4
same thing happens with the definition of
fmap for Const btw. the value is repackaged in a different Right/Const constructor (which is polymorphic in the other type).– Will Ness
2 days ago
same thing happens with the definition of
fmap for Const btw. the value is repackaged in a different Right/Const constructor (which is polymorphic in the other type).– Will Ness
2 days ago
What is this "as-pattern" that you speak of?
– Peter Mortensen
2 days ago
What is this "as-pattern" that you speak of?
– Peter Mortensen
2 days ago
1
1
@PeterMortensen An "as-pattern" is a pattern that uses the
@ symbol to assign a value to an identifier while also pattern matching on that value. Here that's r@(Right _)– 4castle
yesterday
@PeterMortensen An "as-pattern" is a pattern that uses the
@ symbol to assign a value to an identifier while also pattern matching on that value. Here that's r@(Right _)– 4castle
yesterday
add a comment |
2 Answers
2
active
oldest
votes
In the second line of left':
left' _ r@(Right _) = r
-- ^^^^^^^^^^^ ^
Since you use an as-pattern, you require the input type to be equal to the return type, since clearly they're the exact same value. left''s type is then restricted to something of the form a -> b -> b.
This restriction then propogates backwards to in turn restrict the function's type – hopefully you can see how; it's not too difficult.
However, in the second line of left, you construct a new value
left _ (Right x) = Right x
-- ^^^^^^^
The type of this new value has not been restricted, and thus the same problem doesn't occur; it can be something of the form a -> b -> c, which is what you want.
For this reason, the type of left' is more restricted than the type of left, which is what causes their types to be unequal.
To illustrate this concept more concretely, I will describe to you more precisely how this restriction propogates backwards.
We know that left''s signature is of the form (a -> b) -> Either a q -> Either b q. However, line 2 dictates that Either a q = Either b q, which means that a = b, so the type now becomes (a -> a) -> Either a q -> Either a q.
1
Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…
– AJFarmar
2 days ago
I get it. Thanks!
– Z-Y.L
18 hours ago
add a comment |
The issue here is that there are some "hidden" types which make the difference. The type inference engine can infer those in the first case, but can't in the second case.
When we use
Right :: forall a b. b -> Either a b
we actually need to choose what types a and b are. Fortunately, type inference makes this choice for us in most cases.
Type b is easy to choose: it is the type of the value inside the argument of Right. Type a instead can be anything -- the inference engine has to rely on the context to "force" some choice for a. For instance, note that all of these type check:
test0 :: Either Int Bool
test0 = Right True
test1 :: Either String Bool
test1 = Right True
test2 :: Either [(Char, Int)] Bool
test2 = Right True
Now, in your first function
left :: (t -> a) -> Either t b -> Either a b
left f (Left x) = Left (f x)
left _ (Right x) = Right x
The first matched Right x is actually Right x :: Either t b, where the implicit type arguments are chosen to be t and b. This makes x to have type b.
With this information, the type inference tries to determine the type for the second Right x. There, it can see that it should be of the form Either ?? b since x :: b, but, as it happened for our test examples above, we could use anything for ??. So the type inference engine chooses another type variable a (a type which might be t, but could also be something else).
Instead, in the second function
left' :: (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
we give a name (r) to the Right _ pattern. As above, that is inferred to have type Either t b. However, now we use the name r on the right of the =, so type inference does not have to infer anything there, and can (in fact, must) simply reuse the type it has already inferred for r. This makes the output type to be the same Either t b as the one for the input, and in turn this forces f to be of type t -> t.
If this is confusing, you could try to completely avoid type inference and provide an explicit choice for the types using the syntax Right @T @U to choose the function U -> Either T U. (You'll need to turn on the ScopedTypeVariables, TypeApplications extensions for this, though.)
Then we can write:
left :: forall t a b. (t -> a) -> Either t b -> Either a b
left f (Left x) = Left @a @b (f x)
left _ (Right x) = Right @a @b x
-- ^^ -- we don't have to pick @t here!
We can also have
left :: forall t b. (t -> t) -> Either t b -> Either t b
left f (Left x) = Left @t @b (f x)
left _ (Right x) = Right @t @b x
and it would work just fine. GHC prefers the first type since it is more general, allowing a to be anything (including t, but also including other types).
There's no type application to specify in the second definition, since it reuses the same value r on the right hand side as on the left:
left' :: forall t b. (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left @t @b (f x)
left' _ r@(Right x) = r
-- ^^ -- can't pick @a here! it's the same as on the LHS
Thanks for your detailed explanations!
– Z-Y.L
18 hours ago
add a comment |
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55432131%2fwhy-the-difference-in-type-inference-over-the-as-pattern-in-two-similar-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In the second line of left':
left' _ r@(Right _) = r
-- ^^^^^^^^^^^ ^
Since you use an as-pattern, you require the input type to be equal to the return type, since clearly they're the exact same value. left''s type is then restricted to something of the form a -> b -> b.
This restriction then propogates backwards to in turn restrict the function's type – hopefully you can see how; it's not too difficult.
However, in the second line of left, you construct a new value
left _ (Right x) = Right x
-- ^^^^^^^
The type of this new value has not been restricted, and thus the same problem doesn't occur; it can be something of the form a -> b -> c, which is what you want.
For this reason, the type of left' is more restricted than the type of left, which is what causes their types to be unequal.
To illustrate this concept more concretely, I will describe to you more precisely how this restriction propogates backwards.
We know that left''s signature is of the form (a -> b) -> Either a q -> Either b q. However, line 2 dictates that Either a q = Either b q, which means that a = b, so the type now becomes (a -> a) -> Either a q -> Either a q.
1
Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…
– AJFarmar
2 days ago
I get it. Thanks!
– Z-Y.L
18 hours ago
add a comment |
In the second line of left':
left' _ r@(Right _) = r
-- ^^^^^^^^^^^ ^
Since you use an as-pattern, you require the input type to be equal to the return type, since clearly they're the exact same value. left''s type is then restricted to something of the form a -> b -> b.
This restriction then propogates backwards to in turn restrict the function's type – hopefully you can see how; it's not too difficult.
However, in the second line of left, you construct a new value
left _ (Right x) = Right x
-- ^^^^^^^
The type of this new value has not been restricted, and thus the same problem doesn't occur; it can be something of the form a -> b -> c, which is what you want.
For this reason, the type of left' is more restricted than the type of left, which is what causes their types to be unequal.
To illustrate this concept more concretely, I will describe to you more precisely how this restriction propogates backwards.
We know that left''s signature is of the form (a -> b) -> Either a q -> Either b q. However, line 2 dictates that Either a q = Either b q, which means that a = b, so the type now becomes (a -> a) -> Either a q -> Either a q.
1
Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…
– AJFarmar
2 days ago
I get it. Thanks!
– Z-Y.L
18 hours ago
add a comment |
In the second line of left':
left' _ r@(Right _) = r
-- ^^^^^^^^^^^ ^
Since you use an as-pattern, you require the input type to be equal to the return type, since clearly they're the exact same value. left''s type is then restricted to something of the form a -> b -> b.
This restriction then propogates backwards to in turn restrict the function's type – hopefully you can see how; it's not too difficult.
However, in the second line of left, you construct a new value
left _ (Right x) = Right x
-- ^^^^^^^
The type of this new value has not been restricted, and thus the same problem doesn't occur; it can be something of the form a -> b -> c, which is what you want.
For this reason, the type of left' is more restricted than the type of left, which is what causes their types to be unequal.
To illustrate this concept more concretely, I will describe to you more precisely how this restriction propogates backwards.
We know that left''s signature is of the form (a -> b) -> Either a q -> Either b q. However, line 2 dictates that Either a q = Either b q, which means that a = b, so the type now becomes (a -> a) -> Either a q -> Either a q.
In the second line of left':
left' _ r@(Right _) = r
-- ^^^^^^^^^^^ ^
Since you use an as-pattern, you require the input type to be equal to the return type, since clearly they're the exact same value. left''s type is then restricted to something of the form a -> b -> b.
This restriction then propogates backwards to in turn restrict the function's type – hopefully you can see how; it's not too difficult.
However, in the second line of left, you construct a new value
left _ (Right x) = Right x
-- ^^^^^^^
The type of this new value has not been restricted, and thus the same problem doesn't occur; it can be something of the form a -> b -> c, which is what you want.
For this reason, the type of left' is more restricted than the type of left, which is what causes their types to be unequal.
To illustrate this concept more concretely, I will describe to you more precisely how this restriction propogates backwards.
We know that left''s signature is of the form (a -> b) -> Either a q -> Either b q. However, line 2 dictates that Either a q = Either b q, which means that a = b, so the type now becomes (a -> a) -> Either a q -> Either a q.
edited 2 days ago
answered 2 days ago
AJFarmarAJFarmar
9,22022854
9,22022854
1
Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…
– AJFarmar
2 days ago
I get it. Thanks!
– Z-Y.L
18 hours ago
add a comment |
1
Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…
– AJFarmar
2 days ago
I get it. Thanks!
– Z-Y.L
18 hours ago
1
1
Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…
– AJFarmar
2 days ago
Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…
– AJFarmar
2 days ago
I get it. Thanks!
– Z-Y.L
18 hours ago
I get it. Thanks!
– Z-Y.L
18 hours ago
add a comment |
The issue here is that there are some "hidden" types which make the difference. The type inference engine can infer those in the first case, but can't in the second case.
When we use
Right :: forall a b. b -> Either a b
we actually need to choose what types a and b are. Fortunately, type inference makes this choice for us in most cases.
Type b is easy to choose: it is the type of the value inside the argument of Right. Type a instead can be anything -- the inference engine has to rely on the context to "force" some choice for a. For instance, note that all of these type check:
test0 :: Either Int Bool
test0 = Right True
test1 :: Either String Bool
test1 = Right True
test2 :: Either [(Char, Int)] Bool
test2 = Right True
Now, in your first function
left :: (t -> a) -> Either t b -> Either a b
left f (Left x) = Left (f x)
left _ (Right x) = Right x
The first matched Right x is actually Right x :: Either t b, where the implicit type arguments are chosen to be t and b. This makes x to have type b.
With this information, the type inference tries to determine the type for the second Right x. There, it can see that it should be of the form Either ?? b since x :: b, but, as it happened for our test examples above, we could use anything for ??. So the type inference engine chooses another type variable a (a type which might be t, but could also be something else).
Instead, in the second function
left' :: (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
we give a name (r) to the Right _ pattern. As above, that is inferred to have type Either t b. However, now we use the name r on the right of the =, so type inference does not have to infer anything there, and can (in fact, must) simply reuse the type it has already inferred for r. This makes the output type to be the same Either t b as the one for the input, and in turn this forces f to be of type t -> t.
If this is confusing, you could try to completely avoid type inference and provide an explicit choice for the types using the syntax Right @T @U to choose the function U -> Either T U. (You'll need to turn on the ScopedTypeVariables, TypeApplications extensions for this, though.)
Then we can write:
left :: forall t a b. (t -> a) -> Either t b -> Either a b
left f (Left x) = Left @a @b (f x)
left _ (Right x) = Right @a @b x
-- ^^ -- we don't have to pick @t here!
We can also have
left :: forall t b. (t -> t) -> Either t b -> Either t b
left f (Left x) = Left @t @b (f x)
left _ (Right x) = Right @t @b x
and it would work just fine. GHC prefers the first type since it is more general, allowing a to be anything (including t, but also including other types).
There's no type application to specify in the second definition, since it reuses the same value r on the right hand side as on the left:
left' :: forall t b. (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left @t @b (f x)
left' _ r@(Right x) = r
-- ^^ -- can't pick @a here! it's the same as on the LHS
Thanks for your detailed explanations!
– Z-Y.L
18 hours ago
add a comment |
The issue here is that there are some "hidden" types which make the difference. The type inference engine can infer those in the first case, but can't in the second case.
When we use
Right :: forall a b. b -> Either a b
we actually need to choose what types a and b are. Fortunately, type inference makes this choice for us in most cases.
Type b is easy to choose: it is the type of the value inside the argument of Right. Type a instead can be anything -- the inference engine has to rely on the context to "force" some choice for a. For instance, note that all of these type check:
test0 :: Either Int Bool
test0 = Right True
test1 :: Either String Bool
test1 = Right True
test2 :: Either [(Char, Int)] Bool
test2 = Right True
Now, in your first function
left :: (t -> a) -> Either t b -> Either a b
left f (Left x) = Left (f x)
left _ (Right x) = Right x
The first matched Right x is actually Right x :: Either t b, where the implicit type arguments are chosen to be t and b. This makes x to have type b.
With this information, the type inference tries to determine the type for the second Right x. There, it can see that it should be of the form Either ?? b since x :: b, but, as it happened for our test examples above, we could use anything for ??. So the type inference engine chooses another type variable a (a type which might be t, but could also be something else).
Instead, in the second function
left' :: (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
we give a name (r) to the Right _ pattern. As above, that is inferred to have type Either t b. However, now we use the name r on the right of the =, so type inference does not have to infer anything there, and can (in fact, must) simply reuse the type it has already inferred for r. This makes the output type to be the same Either t b as the one for the input, and in turn this forces f to be of type t -> t.
If this is confusing, you could try to completely avoid type inference and provide an explicit choice for the types using the syntax Right @T @U to choose the function U -> Either T U. (You'll need to turn on the ScopedTypeVariables, TypeApplications extensions for this, though.)
Then we can write:
left :: forall t a b. (t -> a) -> Either t b -> Either a b
left f (Left x) = Left @a @b (f x)
left _ (Right x) = Right @a @b x
-- ^^ -- we don't have to pick @t here!
We can also have
left :: forall t b. (t -> t) -> Either t b -> Either t b
left f (Left x) = Left @t @b (f x)
left _ (Right x) = Right @t @b x
and it would work just fine. GHC prefers the first type since it is more general, allowing a to be anything (including t, but also including other types).
There's no type application to specify in the second definition, since it reuses the same value r on the right hand side as on the left:
left' :: forall t b. (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left @t @b (f x)
left' _ r@(Right x) = r
-- ^^ -- can't pick @a here! it's the same as on the LHS
Thanks for your detailed explanations!
– Z-Y.L
18 hours ago
add a comment |
The issue here is that there are some "hidden" types which make the difference. The type inference engine can infer those in the first case, but can't in the second case.
When we use
Right :: forall a b. b -> Either a b
we actually need to choose what types a and b are. Fortunately, type inference makes this choice for us in most cases.
Type b is easy to choose: it is the type of the value inside the argument of Right. Type a instead can be anything -- the inference engine has to rely on the context to "force" some choice for a. For instance, note that all of these type check:
test0 :: Either Int Bool
test0 = Right True
test1 :: Either String Bool
test1 = Right True
test2 :: Either [(Char, Int)] Bool
test2 = Right True
Now, in your first function
left :: (t -> a) -> Either t b -> Either a b
left f (Left x) = Left (f x)
left _ (Right x) = Right x
The first matched Right x is actually Right x :: Either t b, where the implicit type arguments are chosen to be t and b. This makes x to have type b.
With this information, the type inference tries to determine the type for the second Right x. There, it can see that it should be of the form Either ?? b since x :: b, but, as it happened for our test examples above, we could use anything for ??. So the type inference engine chooses another type variable a (a type which might be t, but could also be something else).
Instead, in the second function
left' :: (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
we give a name (r) to the Right _ pattern. As above, that is inferred to have type Either t b. However, now we use the name r on the right of the =, so type inference does not have to infer anything there, and can (in fact, must) simply reuse the type it has already inferred for r. This makes the output type to be the same Either t b as the one for the input, and in turn this forces f to be of type t -> t.
If this is confusing, you could try to completely avoid type inference and provide an explicit choice for the types using the syntax Right @T @U to choose the function U -> Either T U. (You'll need to turn on the ScopedTypeVariables, TypeApplications extensions for this, though.)
Then we can write:
left :: forall t a b. (t -> a) -> Either t b -> Either a b
left f (Left x) = Left @a @b (f x)
left _ (Right x) = Right @a @b x
-- ^^ -- we don't have to pick @t here!
We can also have
left :: forall t b. (t -> t) -> Either t b -> Either t b
left f (Left x) = Left @t @b (f x)
left _ (Right x) = Right @t @b x
and it would work just fine. GHC prefers the first type since it is more general, allowing a to be anything (including t, but also including other types).
There's no type application to specify in the second definition, since it reuses the same value r on the right hand side as on the left:
left' :: forall t b. (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left @t @b (f x)
left' _ r@(Right x) = r
-- ^^ -- can't pick @a here! it's the same as on the LHS
The issue here is that there are some "hidden" types which make the difference. The type inference engine can infer those in the first case, but can't in the second case.
When we use
Right :: forall a b. b -> Either a b
we actually need to choose what types a and b are. Fortunately, type inference makes this choice for us in most cases.
Type b is easy to choose: it is the type of the value inside the argument of Right. Type a instead can be anything -- the inference engine has to rely on the context to "force" some choice for a. For instance, note that all of these type check:
test0 :: Either Int Bool
test0 = Right True
test1 :: Either String Bool
test1 = Right True
test2 :: Either [(Char, Int)] Bool
test2 = Right True
Now, in your first function
left :: (t -> a) -> Either t b -> Either a b
left f (Left x) = Left (f x)
left _ (Right x) = Right x
The first matched Right x is actually Right x :: Either t b, where the implicit type arguments are chosen to be t and b. This makes x to have type b.
With this information, the type inference tries to determine the type for the second Right x. There, it can see that it should be of the form Either ?? b since x :: b, but, as it happened for our test examples above, we could use anything for ??. So the type inference engine chooses another type variable a (a type which might be t, but could also be something else).
Instead, in the second function
left' :: (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left (f x)
left' _ r@(Right _) = r
we give a name (r) to the Right _ pattern. As above, that is inferred to have type Either t b. However, now we use the name r on the right of the =, so type inference does not have to infer anything there, and can (in fact, must) simply reuse the type it has already inferred for r. This makes the output type to be the same Either t b as the one for the input, and in turn this forces f to be of type t -> t.
If this is confusing, you could try to completely avoid type inference and provide an explicit choice for the types using the syntax Right @T @U to choose the function U -> Either T U. (You'll need to turn on the ScopedTypeVariables, TypeApplications extensions for this, though.)
Then we can write:
left :: forall t a b. (t -> a) -> Either t b -> Either a b
left f (Left x) = Left @a @b (f x)
left _ (Right x) = Right @a @b x
-- ^^ -- we don't have to pick @t here!
We can also have
left :: forall t b. (t -> t) -> Either t b -> Either t b
left f (Left x) = Left @t @b (f x)
left _ (Right x) = Right @t @b x
and it would work just fine. GHC prefers the first type since it is more general, allowing a to be anything (including t, but also including other types).
There's no type application to specify in the second definition, since it reuses the same value r on the right hand side as on the left:
left' :: forall t b. (t -> t) -> Either t b -> Either t b
left' f (Left x) = Left @t @b (f x)
left' _ r@(Right x) = r
-- ^^ -- can't pick @a here! it's the same as on the LHS
edited 2 days ago
A Tayler
2983
2983
answered 2 days ago
chichi
77.3k287146
77.3k287146
Thanks for your detailed explanations!
– Z-Y.L
18 hours ago
add a comment |
Thanks for your detailed explanations!
– Z-Y.L
18 hours ago
Thanks for your detailed explanations!
– Z-Y.L
18 hours ago
Thanks for your detailed explanations!
– Z-Y.L
18 hours ago
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55432131%2fwhy-the-difference-in-type-inference-over-the-as-pattern-in-two-similar-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown

1
It looks like the first one might be a bit more flexible since
tcould conceivably equala.– ChaosPandion
2 days ago
1
@ChaosPandion yes it is, but that's the mystery (to me as well when I've looked at it!) - it's saying the function input
fmust have the same input and output type, but there is nothing obvious in the function definition which would so constrainf. In fact the only line which differs in the two definitions doesn't referencefat all!– Robin Zigmond
2 days ago
4
same thing happens with the definition of
fmapforConstbtw. the value is repackaged in a differentRight/Constconstructor (which is polymorphic in the other type).– Will Ness
2 days ago
What is this "as-pattern" that you speak of?
– Peter Mortensen
2 days ago
1
@PeterMortensen An "as-pattern" is a pattern that uses the
@symbol to assign a value to an identifier while also pattern matching on that value. Here that'sr@(Right _)– 4castle
yesterday