are there guidelines for when its a good idea to u...
# announcements
g
are there guidelines for when its a good idea to use a recieved type and when not to? consider the extension method:
Copy code
something.thenAnswer { invoc -> someLogic += invoc.doSomething()[0] } 
something.thenAnswer { someLogic += doSomething()[0] }