| 345 | word GetWhole() const {return whole_;} |
| 346 | hword GetLowHalf() const {return hword(whole_);} |
| 347 | hword GetHighHalf() const {return hword(whole_>>(WORD_BITS/2));} |
| 348 | hword GetHighHalfAsBorrow() const {return 0-hword(whole_>>(WORD_BITS/2));} |
| 349 | |
| 350 | private: |
no outgoing calls
no test coverage detected