folly::for_each_detail::LoopControl

Signals whether a for_each callback wants to stop or keep iterating.

Synopsis

Declared in <folly/container/Foreach.h>

enum class LoopControl : bool;

Members

NameDescription
BREAK Stop the loop before the next element.
CONTINUE Proceed to the next element.