Why the difference in type-inference over the as-pattern in two similar function definitions? The 2019 Stack Overflow Developer Survey Results Are InHow 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

Can an undergraduate be advised by a professor who is very far away?

How to type this arrow in math mode?

APIPA and LAN Broadcast Domain

Are there any other methods to apply to solving simultaneous equations?

Can we generate random numbers using irrational numbers like π and e?

Can withdrawing asylum be illegal?

What is the meaning of Triage in Cybersec world?

Are spiders unable to hurt humans, especially very small spiders?

Is "plugging out" electronic devices an American expression?

"as much details as you can remember"

What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?

Is there a better way to do an empty check in Java?

What information about me do stores get via my credit card?

Does a dangling wire really electrocute me if I'm standing in water?

Geography at the pixel level

How to display lines in a file like ls displays files in a directory?

Merge two greps into single one

Why isn't the circumferential light around the M87 black hole's event horizon symmetric?

Old scifi movie from the 50s or 60s with men in solid red uniforms who interrogate a spy from the past

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?

Using xargs with pdftk

Can a flute soloist sit?

What is the motivation for a law requiring 2 parties to consent for recording a conversation

Balance problems for leveling up mid-fight?



Why the difference in type-inference over the as-pattern in two similar function definitions?



The 2019 Stack Overflow Developer Survey Results Are InHow 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



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








26















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!










share|improve this question



















  • 1





    It looks like the first one might be a bit more flexible since t could conceivably equal a.

    – ChaosPandion
    Mar 30 at 14:00






  • 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
    Mar 30 at 14:01






  • 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
    Mar 30 at 15:02












  • What is this "as-pattern" that you speak of?

    – Peter Mortensen
    Mar 30 at 21:24






  • 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
    Mar 31 at 4:33

















26















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!










share|improve this question



















  • 1





    It looks like the first one might be a bit more flexible since t could conceivably equal a.

    – ChaosPandion
    Mar 30 at 14:00






  • 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
    Mar 30 at 14:01






  • 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
    Mar 30 at 15:02












  • What is this "as-pattern" that you speak of?

    – Peter Mortensen
    Mar 30 at 21:24






  • 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
    Mar 31 at 4:33













26












26








26


1






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!










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 30 at 14:18









TrebledJ

3,66421328




3,66421328










asked Mar 30 at 13:54









Z-Y.LZ-Y.L

505313




505313







  • 1





    It looks like the first one might be a bit more flexible since t could conceivably equal a.

    – ChaosPandion
    Mar 30 at 14:00






  • 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
    Mar 30 at 14:01






  • 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
    Mar 30 at 15:02












  • What is this "as-pattern" that you speak of?

    – Peter Mortensen
    Mar 30 at 21:24






  • 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
    Mar 31 at 4:33












  • 1





    It looks like the first one might be a bit more flexible since t could conceivably equal a.

    – ChaosPandion
    Mar 30 at 14:00






  • 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
    Mar 30 at 14:01






  • 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
    Mar 30 at 15:02












  • What is this "as-pattern" that you speak of?

    – Peter Mortensen
    Mar 30 at 21:24






  • 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
    Mar 31 at 4:33







1




1





It looks like the first one might be a bit more flexible since t could conceivably equal a.

– ChaosPandion
Mar 30 at 14:00





It looks like the first one might be a bit more flexible since t could conceivably equal a.

– ChaosPandion
Mar 30 at 14:00




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
Mar 30 at 14:01





@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
Mar 30 at 14:01




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
Mar 30 at 15:02






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
Mar 30 at 15:02














What is this "as-pattern" that you speak of?

– Peter Mortensen
Mar 30 at 21:24





What is this "as-pattern" that you speak of?

– Peter Mortensen
Mar 30 at 21:24




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
Mar 31 at 4:33





@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
Mar 31 at 4:33












2 Answers
2






active

oldest

votes


















25














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.






share|improve this answer




















  • 1





    Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…

    – AJFarmar
    Mar 30 at 14:19












  • I get it. Thanks!

    – Z-Y.L
    Apr 1 at 4:22


















19














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





share|improve this answer

























  • Thanks for your detailed explanations!

    – Z-Y.L
    Apr 1 at 4:22











Your Answer






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
);



);













draft saved

draft discarded


















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









25














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.






share|improve this answer




















  • 1





    Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…

    – AJFarmar
    Mar 30 at 14:19












  • I get it. Thanks!

    – Z-Y.L
    Apr 1 at 4:22















25














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.






share|improve this answer




















  • 1





    Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…

    – AJFarmar
    Mar 30 at 14:19












  • I get it. Thanks!

    – Z-Y.L
    Apr 1 at 4:22













25












25








25







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.






share|improve this answer















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.







share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 30 at 14:28

























answered Mar 30 at 14:07









AJFarmarAJFarmar

9,33722954




9,33722954







  • 1





    Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…

    – AJFarmar
    Mar 30 at 14:19












  • I get it. Thanks!

    – Z-Y.L
    Apr 1 at 4:22












  • 1





    Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…

    – AJFarmar
    Mar 30 at 14:19












  • I get it. Thanks!

    – Z-Y.L
    Apr 1 at 4:22







1




1





Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…

– AJFarmar
Mar 30 at 14:19






Related question, borne of the same quirk of types: stackoverflow.com/questions/30859917/…

– AJFarmar
Mar 30 at 14:19














I get it. Thanks!

– Z-Y.L
Apr 1 at 4:22





I get it. Thanks!

– Z-Y.L
Apr 1 at 4:22













19














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





share|improve this answer

























  • Thanks for your detailed explanations!

    – Z-Y.L
    Apr 1 at 4:22















19














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





share|improve this answer

























  • Thanks for your detailed explanations!

    – Z-Y.L
    Apr 1 at 4:22













19












19








19







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





share|improve this answer















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






share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 30 at 18:39









A Tayler

6324




6324










answered Mar 30 at 14:27









chichi

77.5k288148




77.5k288148












  • Thanks for your detailed explanations!

    – Z-Y.L
    Apr 1 at 4:22

















  • Thanks for your detailed explanations!

    – Z-Y.L
    Apr 1 at 4:22
















Thanks for your detailed explanations!

– Z-Y.L
Apr 1 at 4:22





Thanks for your detailed explanations!

– Z-Y.L
Apr 1 at 4:22

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High