| 84 | } |
| 85 | |
| 86 | string const ValueBitSet::GetAsBinaryString |
| 87 | ( |
| 88 | ) const |
| 89 | { |
| 90 | uint32 n = GetValue(); |
| 91 | std::string r; |
| 92 | while(n!=0) {r=(n%2==0 ?"0":"1")+r; n/=2;} |
| 93 | return "0b" + r; |
| 94 | } |
| 95 | |
| 96 | uint32 ValueBitSet::GetValue |
| 97 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected