(&self)
| 765 | /// Iterator over all the [`ValueGroup`]s in this function. |
| 766 | #[inline] |
| 767 | fn value_groups(&self) -> Keys<ValueGroup> { |
| 768 | Keys::with_len(self.num_value_groups()) |
| 769 | } |
| 770 | |
| 771 | /// Get the members of a value group. |
| 772 | fn value_group_members(&self, group: ValueGroup) -> &[Value]; |
no test coverage detected