| 41 | Item::Item(void) |
| 42 | : s(0) {} |
| 43 | forceinline |
| 44 | Item::Item(IntView b, int s0) |
| 45 | : DerivedView<IntView>(b), s(s0) {} |
| 46 | |
| 47 | forceinline IntView |
| 48 | Item::bin(void) const { |
| 49 | return x; |
| 50 | } |
| 51 | forceinline |
| 52 | void Item::bin(IntView b) { |
| 53 | x = b; |
no outgoing calls
no test coverage detected