Multiple filters in list comprehension in Erlang

2019-05-11 13:27发布

Say I have a list that contains weather:

1> Weather = [{toronto, rain}, {montreal, storms}, {london, fog}, 
    {paris, sun}, {boston, fog}, {vancouver, snow}].

To get foggy places, I could do this:

2> FoggyPlaces = [X || {X, fog} <- Weather].
[london,boston]

Now I want to retrieve places that are both foggy and snowy. I tried this, but it retrieves only snowy places,

3> FoggyAndSnowyPlaces = [X || {X, fog} <- Weather, {X,snow} <- Weather].
[vancouver,vancouver]

where I was expecting [london,boston,vancouver].

How can I include multiple filters?

标签: erlang
1条回答
成全新的幸福
2楼-- · 2019-05-11 13:33
FoggyAndSnowyPlaces = [X || {X, Y} <- Weather, (Y == fog) or (Y == snow)].

You are confusing generators (Pattern <- List) and filters (boolean conditions). Multiple generators work like nested loops in other languages, so in your 3> you get vancouver twice because the first generator produces two values.

查看更多
登录 后发表回答