如果有两个列表xs
和ys
,是否有办法检查xs
中的任何或所有(但没有其他)值是否在ys
?
答案 0 :(得分:2)
如果 {% assign currentHandle = article.handle %}
{% assign articlesFound = 0 %}
{% for addin in blogs[blog.handle].articles %}
{% unless addin.handle == currentHandle %}
<div><a href="{{ addin.url }}">{{ addin.title }}</a></div>
{% assign articlesFound = articlesFound |plus: 1 %}
{% if articlesFound == 3 %}{% break %}{% endif %}
{% endunless %}
{% endfor %}
中没有重复,你可以这样做:
xs
null (xy \\ ys)
运营商必须import Data.List
。