vote up 2 vote down star

I have this Erlang code:

not lists:any(fun(Condition) ->Condition(Message) end, Conditions).

Can anyone please explain the entire statement in layman's terms? For your information Condition is a function, Conditions is an array. What does fun(Condition) ->Condition(Message) end mean? As well as meaning of not lists:any.

flag

61% accept rate
For reference: erlang.org/doc/man/lists.html#any-2 – Zed Nov 3 at 10:00
For reference, it is the same as: lists:all(fun(Condition) -> not Condition(Message) end, Conditions). – Adam Lindberg Nov 3 at 12:18
For reference, this is the application of one of De Morgan's Laws :) – Zed Nov 3 at 18:03

2 Answers

vote up 6 vote down check
fun(Condition) ->Condition(Message) end

is a lambda function that applies the function Condition to the value of Message (taken as a closure on the surrounding code).

lists:any

is a function that takes a predicate and a list of values, and calls the predicate on each value in turn, and returns the atom true if any of the predicate calls do.

Overall, the result is the atom true if none of the Condition functions in the list Conditions return true for the Message value.

EDIT -- add documentation for lists:any

any(Pred, List) -> bool()

Types:

Pred = fun(Elem) -> bool()
 Elem = term()
List = [term()]

Returns true if Pred(Elem) returns true for at least one element Elem in List.

link|flag
eh the result is inverted ("not lists::any(.." – Will Nov 3 at 8:07
For the hard of reading : "Overall, the result is true if none of the Condition functions return true" – Steve Gilham Nov 3 at 8:20
you edited your post Steve? I don't see the 'edit' diff thing. – Will Nov 3 at 9:03
Yeah -- I added the section starting with "EDIT -- " – Steve Gilham Nov 3 at 9:54
yet the wiki diff thing doesn't show (for me). Anyone can see it? Only I'd swear that I saw you had it inverted before the edit, but I'll believe you if you now tell me that I'm hard of reading ;) – Will Nov 3 at 10:11
vote up 1 vote down

Condition is something that takes a message and returns a boolean if it meets some criteria.

The code goes through the list of conditions and if any of them say true then it returns false, and if all of them say false it says true.

Roughly translated to verbose pseudo-Python:

def not_lists_any(Message,Conditions):
  for Condition in Conditions:
    if Condition(Message):
      return False
  return True
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.