Files
mercury/library/std_util.m
2015-12-01 07:58:07 +11:00

113 lines
3.2 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et wm=0 tw=0
%---------------------------------------------------------------------------%
% Copyright (C) 1994-2006, 2008 The University of Melbourne.
% This file may only be copied under the terms of the GNU Library General
% Public License - see the file COPYING.LIB in the Mercury distribution.
%---------------------------------------------------------------------------%
%
% File: std_util.m.
% Main author: fjh.
% Stability: high.
%
% This file contains higher-order programming constructs and other
% useful standard utilities.
%
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- module std_util.
:- interface.
:- import_module maybe.
%---------------------------------------------------------------------------%
%
% General purpose higher-order programming constructs
%
% compose(F, G, X) = F(G(X))
%
% Function composition.
%
:- func compose(func(T2) = T3, func(T1) = T2, T1) = T3.
% converse(F, X, Y) = F(Y, X).
%
:- func converse(func(T1, T2) = T3, T2, T1) = T3.
% pow(F, N, X) = F^N(X)
%
% Function exponentiation.
%
:- func pow(func(T) = T, int, T) = T.
% The identity function.
%
:- func id(T) = T.
%---------------------------------------------------------------------------%
% maybe_pred(Pred, X, Y) takes a closure Pred which transforms an
% input semideterministically. If calling the closure with the input
% X succeeds, Y is bound to `yes(Z)' where Z is the output of the
% call, or to `no' if the call fails.
%
:- pred maybe_pred(pred(T1, T2), T1, maybe(T2)).
:- mode maybe_pred(pred(in, out) is semidet, in, out) is det.
:- func maybe_func(func(T1) = T2, T1) = maybe(T2).
:- mode maybe_func(func(in) = out is semidet, in) = out is det.
%---------------------------------------------------------------------------%
% isnt(Pred, X) <=> not Pred(X)
%
% This is useful in higher order programming, e.g.
% Odds = list.filter(odd, Xs)
% Evens = list.filter(isnt(odd), Xs)
%
:- pred isnt(pred(T)::in(pred(in) is semidet), T::in) is semidet.
% negate(Pred) <=> not Pred
%
% This is useful in higher order programming, e.g.
% expect(negate(Pred), ...)
%
:- pred negate((pred)::in((pred) is semidet)) is semidet.
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- implementation.
:- import_module int.
%---------------------------------------------------------------------------%
maybe_pred(Pred, X, Y) :-
Y = ( if Pred(X, Z) then yes(Z) else no ).
maybe_func(PF, X) =
( if Y = PF(X) then yes(Y) else no ).
compose(F, G, X) =
F(G(X)).
converse(F, X, Y) =
F(Y, X).
pow(F, N, X) =
( if N = 0 then X else pow(F, N - 1, F(X)) ).
isnt(P, X) :-
not P(X).
negate(P) :-
not P.
id(X) = X.
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%