eventually<T> function
Creates an EVENTUALLY (F
) formula.
Example: eventually(state((s) => s.isComplete))
Implementation
Eventually<T> eventually<T>(Formula<T> operand) {
return Eventually<T>(operand);
}
Creates an EVENTUALLY (F
) formula.
Example: eventually(state((s) => s.isComplete))
Eventually<T> eventually<T>(Formula<T> operand) {
return Eventually<T>(operand);
}