Hi Guys, are scoped function(run, let, apply, also...
# announcements
s
Hi Guys, are scoped function(run, let, apply, also) having anything to do with threads ? are there thread safe ?
s
They are unrelated to threads so yes. They are threadsafe
👍 1
t
Those scope functions are somehow just syntactic sugar. Since they are inlined, they are the same as defining a local variable named
it
(for
let
and
also
) or
this
(for
run
,
apply
and
with
). Therefore they don't provide more thread safety than defining a local variable.
👍 1
s
thanks @spand and @tseisel