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
Vitor Santos Costa 3369e0085c error handling
documentation:
2018-05-13 12:59:17 +01:00

54 lines
866 B
Prolog

/**
* @file apply.yap
* @author VITOR SANTOS COSTA <vsc@VITORs-MBP.lan>
* @date Mon Nov 16 23:00:08 2015
*
* @brief Stub for maplist and friends
*
*
*/
:- module(apply_stub,[]).
:- reexport(library(maplist),
[maplist/2,
maplist/3,
maplist/4,
maplist/5,
include/3,
exclude/3,
partition/4,
partition/5
]).
/**
@defgroup apply_stub Apply Predicates
@ingroup library
@{
This library provides a SWI-compatible set of utilities for applying a
predicate to all elements of a list.
The apply library is a _stub_, it just forwards definitions to the
@ref maplist library. The predicates forwarded are:
* maplist:maplist/2,
* maplist:maplist/3,
* maplist:maplist/4,
* maplist:maplist/5,
* maplist:include/3,
* maplist:exclude/3,
* maplist:partition/4,
* maplist:partition/5
*/
%% @}