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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:11:23+00:00 2026-05-24T09:11:23+00:00

I recently came across this code example in Mercury: append(X,Y,Z) :- X == [],

  • 0

I recently came across this code example in Mercury:

append(X,Y,Z) :-
  X == [],
  Z := Y.
append(X,Y,Z) :-
  X => [H | T],
  append(T,Y,NT),
  Z <= [H | NT].

Being a Prolog programmer, I wonder: what’s the difference between a normal unification =
and the := or => which are use here?

In the Mercury reference, these operators get different priorities, but they don’t explain the difference.

  • 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-24T09:11:24+00:00Added an answer on May 24, 2026 at 9:11 am

    First let’s re-write the code using indentation:

    append(X, Y, Z) :-
        X == [],
        Z := Y.
    append(X, Y, Z) :-
        X => [H | T],
        append(T, Y, NT),
        Z <= [H | NT].
    

    You seem to have to indent all code by four spaces, which doesn’t seem to work in comments, my comments above should be ignored (I’m not able to delete them).

    The code above isn’t real Mercury code, it is pseudo code. It doesn’t make sense as real Mercury code because the <= and => operators are used for typeclasses (IIRC), not unification. Additionally, I haven’t seen the := operator before, I’m not sure what is does.

    In this style of pseudo code (I believe) that the author is trying to show that := is an assignment type of unification where X is assigned the value of Y. Similarly => is showing a deconstruction of X and <= is showing a construction of Z. Also == shows an equality test between X and the empty list. All of these operations are types of unification. The compiler knows which type of unification should be used for each mode of the predicate. For this code the mode that makes sense is append(in, in, out)

    Mercury is different from Prolog in this respect, it knows which type of unification to use and therefore can generate more efficient code and ensure that the program is mode-correct.

    One more thing, the real Mercury code for this pseudo code would be:

    :- pred append(list(T)::in, list(T)::in, list(T)::out) is det.
    
    append(X, Y, Z) :-
        X = [],
        Z = Y.
    append(X, Y, Z) :-
        X = [H | T],
        append(T, Y, NT),
        Z = [H | NT].
    

    Note that every unification is a = and a predicate and mode declaration has been added.

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

Sidebar

Related Questions

I recently came across this in some code - basically someone trying to create
I am pretty new to C. I recently came across this piece of code
I recently came across code written by a fellow programmer in which he had
I came across this recently, up until now I have been happily overriding the
I was working on some code recently and came across a method that had
An interesting issue came up recently. We came across some code that is using
I came a across a new problem when using templates. This is me being
I recently came across some code that looked like: if(sizeof(var,2) == 4) { ...
This is my first StackOverflow question so be nice! :-) I recently came across
I was studying some code I found on the web recently, and came across

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.