Files
flipper/android
Lorenzo Blasa 48f70ef8ec PartialTraversal
Summary:
Cleanup documentation as with the other traversal, no raw loops.

Note: about no raw loops philosophy

To make clear and explicit the intention of the code, in this case to iterate over all elements of a collection.

A raw loop exposes unwanted flexibility which makes it hard to reason about code. A raw loop body thus have control over the lifetime of the loop itself.
- continue
- break
- return

None of those can be used with a forEach for example. Thus we make it clear the intention of the code.

Reviewed By: LukeDefeo

Differential Revision: D39652960

fbshipit-source-id: ac660dc43256e7850bd18e31b00aa123783d5c98
2022-09-26 05:00:36 -07:00
..
2022-09-26 05:00:36 -07:00
2022-07-28 06:59:11 -07:00
2022-09-12 03:48:43 -07:00