If I do this: ``` someList.forEach { return true...
# announcements
p
If I do this:
Copy code
someList.forEach {
  return true
}
That’s the return of the lambda so, will it run for all the entries of the list or stop on the first one?