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

  • Home
  • SEARCH
  • 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 3661082
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T01:16:05+00:00 2026-05-19T01:16:05+00:00

Can somebody please explain (with example) the difference between context-independent and context-dependent overloading?

  • 0

Can somebody please explain (with example) the difference between context-independent and context-dependent overloading?

  • 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-05-19T01:16:06+00:00Added an answer on May 19, 2026 at 1:16 am

    I have never heard about those. And there’s only about five hits on Google, one of which is this very question, which seems to suggest to me that these are made-up terms. And as with any made-up term, if you want to know what it means, you have to ask the person who made it up.

    From what little I could gather, it seems to be related to return-type based overloading.

    Basically, if you have four overloaded functions like these:

    foo :: string → int
    foo :: string → string
    foo :: string → ()
    foo :: int → int
    

    And you call them like this:

    1 + foo 1
    1 + foo "one"
    foo "one"
    

    Then, with context-dependent overloading (i.e. overloading based on the return type as well as the parameter types), the following implementations will be selected:

    1 + foo 1     # foo :: int → int
    1 + foo "one" # foo :: string → int (because `+` takes an `int`)
    foo "one"     # foo :: string → ()  (because there is no return value)
    

    Whereas with context-independent overloading (i.e. ignoring the return type), the following implementations will be selected:

    1 + foo 1     # foo :: int → int
    1 + foo "one" # ERROR
    foo "one"     # ERROR
    

    In both the ERROR cases, there is an ambiguity between foo :: string → int, foo :: string → string and foo :: string → (), since they only differ in their return type but have the same paremeter type.

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

Sidebar

Related Questions

can somebody please explain what is the difference between the following mechanisms of passing
Can somebody please explain me the difference between the terms high memory and high
Can somebody please give me an example of a unidirectional @OneToOne primary-key mapping in
Can somebody please explain to me how to properly test Postgres DB errors, particularly
Can somebody please explain the order of private and public in a class. Is
I do not know where my head is today, can somebody please explain to
can somebody please explain, what exactly does it mean? I'm trying to understand what
can somebody please explain what exactly is going on when I do in my
Can somebody please explain connection pooling to me please? I am just not understanding
can somebody please explain what is wrong with my functions, thanks in advance: I

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.