lua-users home
lua-l archive

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


> The idea is to keep separate lists for each type of object (thus
> eliminating the vtype variable) and not storing an explicit "marked"
> value -- instead, the marked status is determined by which list the
> object is linked into (white, gray, or black).

Are you sure you can do that? You need a fast way to check the color
of an object while running the mutator.

-- Roberto