From: Trans Date: 2005-10-13T11:41:53+09:00 Subject: Re: Can this be usefull? Hey, intersteing --a Modal Array! :-) I'm not sure of use case, but its certainly neato. One fix though, use @size rather then @@size. class RoundList < Array def initialize(size) @size = size end def add(k,v) self[k%@size] = v end def get(i) self[i%@size] end end T.