always<T> function

Always<T> always<T>(
  1. Formula<T> operand
)

Creates an ALWAYS (G) formula.

Example: always(state((s) => s.isValid))

Implementation

Always<T> always<T>(Formula<T> operand) {
  return Always<T>(operand);
}