In case you write Prolog programs regularly you probably have your own library of predicates you always rely on. Some Prolog systems come with a rich set of predefined predicates and some not. Some systems have libraries but they are mostly incompatible with other systems. Also, many existing libraries contain a lot of rarely needed predicates. But then, there are a couple predicates that "should" be always present. And then, there is some progress happening since November like this and Cor.2 (draft). Why not here too?

So what are your favorite predicates? That is predicates, that are not defined in the ISO core.

To start with: between/3, member/2, length/2, dif/2, maplist/2, ...

For DCGs: seq//1, iseq//1, ... //0.

link|improve this question

40% accept rate
1  
Question or Poll, where is the difference? – Cookie Monster Jul 26 '11 at 12:27
1  
The difference might depend on the number of votes to reopen this question. – false Feb 16 at 1:06
feedback

closed as not a real question by Emile Cormier, liori, gbn, marc_s, Jerry Coffin Jun 23 '11 at 17:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Very good question. In addition to member/2, length/2, maplist/2 (which you already suggest), I recommend transpose/2, as in Haskell. Also memberchk/2, select/3 and append/3. To help users with the survey, could you supply a Prolog program that processes a given Prolog file term by term (clause by clause), records which predicates it defines, keeps track of which predicates it calls, and from that (maybe optionally) subtracts the predicates that are supplied by libraries it explicitly imports? Running such a program on several source files could give a good starting point for a useful "prolog" library for Prolog.

link|improve this answer
The program you suggest would be a very complex task. After all it would have to treat all different kinds of modules currently in use... – false Jun 23 '11 at 13:24
Actually I meant: all different kinds of module systems... – false Jun 23 '11 at 13:30
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.