! this method returns true if the value is equal zero */
| 2539 | this method returns true if the value is equal zero |
| 2540 | */ |
| 2541 | bool IsZero() const |
| 2542 | { |
| 2543 | for(uint i=0 ; i<value_size ; ++i) |
| 2544 | if(table[i] != 0) |
| 2545 | return false; |
| 2546 | |
| 2547 | return true; |
| 2548 | } |
| 2549 | |
| 2550 | |
| 2551 | /*! |
no outgoing calls
no test coverage detected