Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8246111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T22:24:01+00:00 2026-06-07T22:24:01+00:00

Why doesn’t extractEither typecheck? data MyEither a b = MyLeft a | MyRight b

  • 0

Why doesn’t extractEither typecheck?

data MyEither a b = MyLeft a | MyRight b
                    deriving (Read, Show)

extractEither :: MyEither a b -> c
extractEither (MyLeft p) = p

The compiler shows:

Couldn't match type `a' with `c'
  `a' is a rigid type variable bound by
      the type signature for extractEither :: MyEither a b -> c
      at /Users/tongmuchenxuan/playground/test.hs:5:1
  `c' is a rigid type variable bound by
      the type signature for extractEither :: MyEither a b -> c
      at /Users/tongmuchenxuan/playground/test.hs:5:1
In the expression: p
In an equation for `extractEither': extractEither (MyLeft p) = p

Isn’t `c’ general enough to catch any type?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T22:24:03+00:00Added an answer on June 7, 2026 at 10:24 pm

    No. c is any type the caller could wish the function to return, i.e. for a function f :: a -> c it would always need to be possible to write f x + 1 :: Int as well as putStr $ f x as well as main = f x. Which your function does of course not permit.

    What you want is returning a dynamic type. Haskell deliberately does not permit this as easily as some other languages do, because it obviously can lead to runtime errors easily when the returned type is something unexpected. There are various ways to do it, but which is the right one depends on what you actually want this for. Could you give some context? It’s likely that the best solution to your problem would not use dynamic types, but something more Haskell-idiomatic.

    Perhaps what you want is simply

    extractEither :: MyEither a a -> a
    extractEither (MyLeft p) = p
    extractEither (MyRight p) = p
    

    which requires that the types on both “sides” are the same.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

SQLite doesn't have a data type for dates. I was wondering if it's enough
Why doesn't the file input element show up at all??? see code and screen
C# doesn't require you to specify a generic type parameter if the compiler can
doesn't show specified graph in Mathematica Graph Theory package 'Combinatorica'.
Doesn't value have to return toString() to be able to call value.toString()? When do
Doesn't seem to work for me, maybe I just doing it wrong
Doesn't the space occupied by a variable get deallocated as soon as the control
Doesn't object initialization outside of a constructor break encapsulation ? Given: class MyClass {
This doesn't work: int number = 1; String numberstring = IntToString(number); I get The
didSelectRowAtIndex doesn't trigger when I press on cell's UITextLabel even though it triggers if

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.