lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Naming...

So, "lists" are really "arrays"?

remove_value( 2 ) suggests that it removes an item or all items with the value 2. remove_at( 2 ) is probably better.

Other...

How many of these routines alter their input? More or less all of them?

In the past, I've distinguished between mutable types and frozen types with methods for converting between the two, but I'm not sure it's worth the hassle.

Mark