使用 maplist 将字符串列表更改为原子?

changing list of strings to atoms using maplist?

如何使用 maplist 将字符串更改为原子。

这行不通:

 ?- maplist(atom_string,["a","b","c"]).

首先是因为 atom_string/2 的元数为 2(你如何在 prolog 中实现部分函数//柯里化)。

但即使 partial-fun 起作用,复杂的是 atom_string 的第一个参数是未知的,即调用是:

  atom_string(A,"atom")

不是:

  atom_string("atom",A)

这有效:

?- use_module(library(lambda)).

?- F = \Y^X^(atom_string(X,Y)), maplist(F,["a","b","c"],L).
F = \Y^X^atom_string(X, Y),
L = [a, b, c].

使用辅助谓词。

string_atom(String,Atom) :-
    atom_string(Atom,String).

然后 运行 使用

?- maplist(string_atom,["a","b","c"],Atoms).
Atoms = [a, b, c].

这按预期工作:

?- maplist(atom_string, Atoms, ["a","b","c"]).
Atoms = [a, b, c].

如果这不是您想要的,请解释。