|
Britbot
|
checks if all the entries of the iteration are zero
Definition at line 64 of file ExpIterator.cs. {
//going over the list searching for nonzero
foreach (int value in this.Values)
{
if (value != 0)
return false;
}
//if here it means that all the entries are zero
return true;
}
|
1.7.6.1