Files
mercury/tests/valid/explicit_quant.m
Zoltan Somogyi c03b11ca48 Update the style of more test cases.
And updated expected outputs for changed line numbers.
2021-07-27 19:29:21 +10:00

22 lines
448 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module explicit_quant.
:- interface.
:- import_module char.
:- import_module list.
:- pred only_space_chars(list(char) :: in) is semidet.
:- implementation.
only_space_chars(Cs) :-
all [C] (
list.member(C, Cs)
=>
C = ' '
).