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 9259789
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T12:44:31+00:00 2026-06-18T12:44:31+00:00

I have the following bit of code, which I’d like to return either a

  • 0

I have the following bit of code, which I’d like to return either a boolean or a tuple. (The functions isvariable and dont_care both return booleans, fyi)

let match_element (a, b) =
if a = b then true
else if (dont_care a) || (dont_care b) then true
else if (isvariable a) then (a, b)
else if (isvariable b) then (b, a)
else false;;

Currently, it raises the following error:

Is there any way of resolving this?

This expression has type 'a * 'b
but an expression was expected of type bool

(This function is based on instructions for a Python program, and I’m not sure if it’s possible in OCaml. )

  • 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-18T12:44:32+00:00Added an answer on June 18, 2026 at 12:44 pm

    What you want is, very roughly speaking, ad-hoc polymorphism or overloading. It is impossible in OCaml, and more importantly, we do not want to have it in OCaml.

    If you want to have a function which returns multiple types, then you have to define a new “sum” type which can express these types: here, you want to return a boolean or a tuple, so a new type which means “a boolean or a tuple”. In OCaml we define such a type like:

    type ('a, 'b) t = Bool of bool
                    | Tuple of 'a * 'b
    

    Using this new sum type your code should look like:

    type ('a, 'b) t = 
      | Bool of bool
      | Tuple of 'a * 'b
    
    let match_element (a, b) =
      if a = b then Bool true
      else if dont_care a || dont_care b then Bool true
      else if is_variable a then Tuple (a, b)
      else if is_variable b then Tuple (b, a)
      else Bool false;;
    

    The type t here with two parameters (‘a and ‘b) can be too general for your purpose, but I cannot guess what you want to do from the context. There may be nicer type definition which suits with your intention, like:

    type element = ... (* Not clear what it is from the context *)
    
    type t =
      | I_do_not_care        (* Bool true in the above definition *)
      | I_do_care_something  (* Bool false in the above definition *)
      | Variable_and_something of element * element  (* was Tuple *)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following bit of code which is responsible for displaying a tooltip.
I have the following code which does a bit of housekeeping on a database:
I have the following situation in code, which I suspect may be a bit
i have the following bit of C code which reads from a pipe and
I have the following bit of code in my AppController, which I'm using to
I have the following bit of code which I'm using to delete all of
I have the following bit of code which runs a SQL statement: int rowsEffected
Hello I have the following bit of code which seems to work, but I'm
Let's say I have the following bit of code (which I know could be
I have the following bit of code which I'm just trying out by running

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.