4 Bytes
| 360 | |
| 361 | // 4 Bytes |
| 362 | struct StringLTypeDefn { |
| 363 | LBound bound; |
| 364 | |
| 365 | StringLTypeDefn() |
| 366 | : bound(0) |
| 367 | {} |
| 368 | |
| 369 | explicit StringLTypeDefn(const LBound a_bound) |
| 370 | : bound(a_bound) |
| 371 | {} |
| 372 | |
| 373 | bool operator<(const StringLTypeDefn& other) const |
| 374 | { |
| 375 | return bound < other.bound; |
| 376 | } |
| 377 | }; |
| 378 | |
| 379 | struct PlainCollectionHeader { |
| 380 | EquivalenceKind equiv_kind; |
no outgoing calls
no test coverage detected