Non-Numeric Loop Control
for( OpenList L = A; !L.isEmpty(); L = L.rest(); )
{
... loop body ...
}
# of iterations = A.length()