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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:12:11+00:00 2026-06-07T14:12:11+00:00

I feel silly for even asking this because it seems so trivial but my

  • 0

I feel silly for even asking this because it seems so trivial but my brain is failing me. If I had the following:

let a, b, c = 1, 1, 1

Is there an eligant way to determine if a, b, and c all hold the same value. Something like:

let result = (a = b = c)

This fails because the expression a = b returns true and the next expression results in true = c and complains that it was expecting int, not bool. The only thing I can think of is:

a = b && a = c && b = c

which won’t work when I want to add more variables.

Really what I’m trying to do is this:

let same (x: string * string * string) =
    match x with
    | (a, a, a) -> true
    | _ -> false

I was hoping that I could match all the elements into one element and if they were different it would move on, but it says on the second element in the match that it has already been bound.

  • 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-07T14:12:13+00:00Added an answer on June 7, 2026 at 2:12 pm

    To check if every value in a list is the same:

    let rec same = function
      | x::y::_ when x <> y -> false
      | _::xs -> same xs
      | [] -> true
    

    Usage

    let a, b, c = 1, 1, 1
    same [a; b; c] //true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I feel silly asking this because I should know it but I'm in a
I feel silly for asking, but how do I get plan value in this
I feel silly asking this because I'm betting the answer is staring right at
Sorry for such a trivial question, but I'd feel silly building this if it
I feel really silly asking this, but it is completely blowing my mind why
I feel a little bit silly asking this, but I haven't been able to
I feel silly for asking this but it isn't like I could google this.
I feel silly asking this, but, I just can't work out how to create
I feel really silly for asking this, but what am I doing wrong with
I feel silly, but I just can't find an answer to this. Let's say

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.