You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
I'm trying to wrap an expression into a lambda and notice that the dummy variable of the lambda doesn't match with the variable of the expression. Am I doing this right?
Here, the lambda's i is not the same as the i in the expression I send:
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
The lambda has it's own local namespace. It searches in the global
namespace only if it does not find the variable in the local
namespace. As the dummy variable is introduced it creates the key 'i'
in the local dictionary, so you can be sure that it won't touch upon
any 'i's in the global.