Shovel.Vm.Vm.CountCellsSvArray C# (CSharp) Method

CountCellsSvArray() private method

private CountCellsSvArray ( Value values, HashSet visited ) : int
values Value
visited HashSet
return int
        int CountCellsSvArray(Value[] values, HashSet<object> visited)
        {
            var sum = values.Length;
            visited.Add (values);
            foreach (var el in values) {
                sum += CountCellsImpl (el, visited);
            }
            return sum;
        }
Vm