lua4.1w4 - for loop with functions - suggestions
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: lua4.1w4 - for loop with functions - suggestions
- From: "nikdo79" <dominik-wagner@...>
- Date: 2002年3月25日 21:23:17 -0000
since:
for a,b in MyFunction do
...
end
is possible, i would especially like
for a,b in MyObject:Get do
...
end
to be possible.
any chances?
Domink
P.S.: yes i know, that the following is possible
for a,b in function () return MyObject:Get() end do
....
end
but i don't like, i think its too clumsy