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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:42:12+00:00 2026-06-17T04:42:12+00:00

I want to implement my own maplist in Prolog . Given the following :

  • 0

I want to implement my own maplist in Prolog .

Given the following :

myMaplist(Goal, [Elem1|Tail1], [Elem2|Tail2]) :-
        apply(Goal, [Elem1, Elem2]), 
        myMaplist(Goal, Tail1, Tail2).

What is the apply operator , and how can I replace it with something that
is not a library system call ?

  • 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-17T04:42:13+00:00Added an answer on June 17, 2026 at 4:42 am

    if your Prolog has call/N, use it:

    myMaplist(Goal, [Elem1|Tail1], [Elem2|Tail2]) :-
            call(Goal, Elem1, Elem2), 
            myMaplist(Goal, Tail1, Tail2).
    

    otherwise build the call with univ, and use call/1

    myMaplist(Goal, [Elem1|Tail1], [Elem2|Tail2]) :-
            Pred =.. [Goal, Elem1, Elem2],
            call(Pred),
            myMaplist(Goal, Tail1, Tail2).
    

    edit thanks to @false for pointing out that I must correct. To be true I posted that code without test, nevertheless I surely overlooked the bug… Here a correction

    myMapList(_, [], []).
    myMapList(Goal, [Elem1|Tail1], [Elem2|Tail2]) :-
        Goal =.. [P|A],
        append(A, [Elem1, Elem2], Ac),
        Pred =.. [P|Ac],
        call(Pred),
        myMapList(Goal, Tail1, Tail2).
    

    test:

    ?- myMapList(myMapList(=),[[1,2,3],[a,b,c]],L).
    L = [[1, 2, 3], [a, b, c]] .
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to implement my own tweet compressor . Basically this does the following.
I want to implement my own copy method for a class A which looks
I want to implement all my own rotation animations but if I only return
I want to implement an action bar for my own android app like the
I'm developing own CMS and i want to implement functionality to dynamically include existing
In Django admin I want to override and implement my own form for a
I'm attempting to override and implement my own TabExpansion. In the function I want
given this class definition: public class Frame { IFrameStream CapturedFrom; } I want implement
I want to implement my own dynamic memory management system in order to add
I want to implement a suggestion combobox which shows suggestions grabbed from my own

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.