Condition typedef

Condition = bool Function()

A typedef representing a condition function that returns a boolean value.

The Condition typedef defines a function signature for conditions used in various scenarios, such as determining when to execute certain actions or make decisions.

Implementation

typedef Condition = bool Function();