我正在尝试使用 maplist 通过限制每个元素的长度来过滤元素列表,这就是我尝试过的
maplist(atom_length(2,X),[aa,bb,cc,asd],Result).
ERROR: apply:maplist_/3: Undefined procedure: atom_length/4
ERROR: However, there are definitions for:
ERROR: atom_length/2
我希望得到
Result = [aa,bb,cc]
需要一点帮助。谢谢。