Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you write a prolog procedure map(List, PredName, Result) that applies the predicate PredName(Arg, Res) to the elements of List, and returns the result in the list Result.

For Example:

test(N,R):- R is N*N.

?- map([3,5,-2], test, L).
L = [9,25,4];
no
share|improve this question

1 Answer

This is usually called maplist/3 and is part of the Prolog prologue. Note the different argument order!

maplist(_C, [], []).
maplist( C, [X|Xs], [Y|Ys]) :-
   call(C, X, Y),
   maplist( C, Xs, Ys).

The different argument order permits you to easily nest several maplist-goals.

?- maplist(maplist(test),[[1,2],[3,4]],Rss).
Rss = [[1,4],[9,16]].

maplist comes in different arities and corresponds to the following constructs in functional languages, but requires that all lists are of same arity. Note that Prolog does not have the asymmetry between zip/zipWith and unzip. A goal maplist(Cond, Xs, Ys, Zs) subsumes both and even offers more general uses.

  • maplist/2 corresponds to all
  • maplist/3 corresponds to map
  • maplist/4 corresponds to zipWith but also unzip
  • maplist/5 corresponds to zipWith3 and unzip3
  • ...
share|improve this answer
3  
+1. In modern Prologs, you'll find maplist somewhere in the library. – larsmans Jul 13 '11 at 19:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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