In functional programming languages map
, filter
and reduce
are often preferred over imperative loops. As stated in the official Reason docs the language creates don't have a preference on whether you should use a loop over these function.
In Reason we have for
as well as while
available.