addelement() without parameter
Posted: Fri Nov 14, 2003 1:36 am
how about this one?
addelement() without a list name affects the last addressed list
same for the other list commands
though i know when lists are adressed in procedures things can get nasty...
it's mostly to avoid these kind of thins:
addelement(test())
test()="test"
and change it to:
addelement()
test()="test"
when doing lots of stuff with lists in a small block of code it could improve readability
addelement() without a list name affects the last addressed list
same for the other list commands
though i know when lists are adressed in procedures things can get nasty...
it's mostly to avoid these kind of thins:
addelement(test())
test()="test"
and change it to:
addelement()
test()="test"
when doing lots of stuff with lists in a small block of code it could improve readability