This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/library/apply.yap

28 lines
470 B
Plaintext
Raw Normal View History

2014-09-11 20:06:57 +01:00
/** @defgroup Apply Apply Macros
2015-01-04 23:58:23 +00:00
@ingroup library
2014-09-11 20:06:57 +01:00
@{
This library provides a SWI-compatible set of utilities for applying a
2014-09-15 09:13:50 +01:00
predicate to all elements of a list. In practice, the library just forwards
definitions from the @ref maplist library library.
2014-09-11 20:06:57 +01:00
*/
2009-06-08 20:13:31 +01:00
:- module(apply,[]).
:- reexport(library(maplist),
[maplist/2,
maplist/3,
maplist/4,
maplist/5,
include/3,
exclude/3,
partition/4,
partition/5
]).
2014-09-11 20:06:57 +01:00
/**
@}
*/