Ex4pmCore.ProcessIR.Loop (ex4pm v26.9.9)

Copy Markdown View Source

An iterative loop construct (do-while / repeat-until / while-do).

Summary

Types

t()

@type t() :: %Ex4pmCore.ProcessIR.Loop{
  body: String.t(),
  exit: String.t() | nil,
  id: String.t(),
  loop_condition: String.t() | nil,
  max_iterations: non_neg_integer() | nil,
  metadata: map(),
  redo: String.t()
}