Can anyone please point me to overview of using (maybe different kinds) of map/reduce/filter functions in Julia (and it’s standard packages)?
Here is is what I’m missing now: I want any(map(x -> x > 0, big_rand_array))
to lazy evaluate without computing on all elements, yet it appears to allocates big resulting array of map
and only then passes it to any
.
(this is “first steps” question)
Thank you very much,
10 posts - 8 participants