Whilepokrokom
Whilepokrokom is a term used in programming discourse to describe a looping pattern centered on dual termination criteria. In this pattern, the loop continues as long as two independent conditions hold, and termination can occur only when one or both conditions change in a way that respects the other. The term is informal and not part of any official language specification.
Etymology and history: The word blends the familiar keyword while with a coinage, pokrokom, that has circulated
Description and characteristics: The essential feature is a conjunction-based continuation predicate. A whilepokrokom loop often arises
while (not finishedA and not finishedB) {
}
This illustrates maintaining two conditions within a single looping structure.
See also: while loop, compound condition, loop termination, coding patterns.