Search found 1 match

by newstudent
Sat Feb 02, 2019 12:57 pm
Forum: Common Lisp
Topic: Using Funcall and function satisfiability
Replies: 1
Views: 20439

Using Funcall and function satisfiability

Could anyone help me solve this Common Lisp question? Use do, if, and funcall to define (satisfy fun lst) which returns a list of the items in a list that satisfy a function. An item satisfies a function if the function returns true when that item is used as the function’s argument. This is how fa...