# File automaten.rb, line 279
        def ===(another)
                if another != nil then 
                        for i in 0..(@items.length-1) do
                                return false if !(@items[i]===another.items[i])
                        end
                        return true
                else 
                        return false 
                end
        end