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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:32:16+00:00 2026-06-11T14:32:16+00:00

I have a predicate that decomposes an expression and I am having results that

  • 0

I have a predicate that decomposes an expression and I am having results that I dont understand when I trace through it.

My predicate is as below

 calc(R,Expr) :- Expr =..[Op,H,T].

So when I have an expression like [1,1], the Op is actually a period. Any idea why?

  • 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-11T14:32:17+00:00Added an answer on June 11, 2026 at 2:32 pm

    It’s because the form [Head|Tail] is just syntactic sugar for '.'(Head, Tail) (everything is a term and lists are no exception). Normally, for the list made of 1, 2, 3 and 4, you’d have to write

    '.'(1, '.'(2, '.'(3, '.'(4, [])))).
    

    As you can see, that’s not very practical and instead we use the shortcut:

    [1|[2|[3|[4|[]]]]]
    

    And this shortcut has a shortcut:

    [1, 2, 3, 4]
    

    And you can mix those as you wish:

    [1, 2|[3, 4]]
    

    That is handy when you want to specify some elements and then let the tail free:

    [1, 2|A]
    

    BTW, you can see that for yourself by using write_canonical/1:

    ?- write_canonical([1, 2, 3, 4]).
    '.'(1,'.'(2,'.'(3,'.'(4,[]))))
    true.
    

    Hope it helped

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

Sidebar

Related Questions

I have predicate P1 that returns values one after the other like this: -?
I have a predicate that looks like [NSPredicate predicateWithFormat:@region=%@ && locality CONTAINS %@, self.region,
Say I have a List [1,2,4,5], I would like to have a predicate that
Having a bit of trouble using the List.Find with a custom predicate i have
I have a Repository Class with the following method... public T Single<T>(Predicate<T> expression) {
I have a simple predicate function that follows as: [totalSentences addObjectsFromArray:[firstLangEx filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@(SELF contains[c]
I have a collection of objects that I would like to partition into two
I have a Core Data importer that loops through data, and ignores duplicate records
I have a predicate called check(A,B) . that checks if list A matches with
i have a number of lambda expressions that will be using the same predicate

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.