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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:23:51+00:00 2026-05-27T16:23:51+00:00

I get a Error: Warning 25: bad style, all clauses in this pattern-matching are

  • 0

I get a "Error: Warning 25: bad style, all clauses in this pattern-matching are guarded"

What does “guarded” mean?

My code has pattern matching-

match z with
    | y when List.length z = 0 -> ...
    | y when List.length z > 0 -> ...
  • 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-27T16:23:52+00:00Added an answer on May 27, 2026 at 4:23 pm

    The guards are the when parts. What the compiler is telling you is that it can’t tell whether your match is exhaustive (covers all possible cases), but that it might not be. The compiler can’t really tell for sure, because exhaustiveness is undecidable for arbitrary expressions. The compiler just figures you should have at least one pattern without a guard because when the match is exhaustive, a guard on the last case would be redundant.

    Since you know your match is exhaustive, the compiler is basically right. Your second guard is redundant. You can just leave it off with no difference in meaning:

    match z with
    | y when List.length z = 0 -> ...
    | y -> ...
    

    This will make the compiler happy.

    I like this warning; it has found a few logic errors for me over the years.

    If this code isn’t just an example but is really what you wrote, it would be much more idiomatic to write it like this:

    match z with
    | [] -> ...
    | head :: tail -> ...
    

    It’s also a tiny bit more efficient since it won’t bother to calculate the length of the list and then discard the result.

    If you don’t need to destructure the list, you can make it simpler still:

    if z = [] then
        ...
    else
        ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code, for which I get the error: Warning : mysqli_stmt::bind_result()
I get the following error when compiling my app. warning: class 'ConfigureViewController' does not
I get this warning in my error logs and wanted to know how to
When getting all values from db table, I get this error on the last
I'm getting this PHP warning in my error_log and want to get it fixed.
I have this query and I get error Operand should contain 1 column(s), whats
I use the following jquery statements but i get error in this function onGetDataSuccess(result)
I am using following PHP code for trigger creation but always get error, please
I get following Error: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given
When I try to compile I get this error: 1>------ Build started: Project: snake,

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.