Get the typeset of allowed types for the controlling type variable in a polymorphic instruction.
(self)
| 789 | /// Get the typeset of allowed types for the controlling type variable in a polymorphic |
| 790 | /// instruction. |
| 791 | pub fn ctrl_typeset(self) -> Option<ValueTypeSet> { |
| 792 | self.typeset_offset().map(|offset| TYPE_SETS[offset]) |
| 793 | } |
| 794 | |
| 795 | /// Is this instruction polymorphic? |
| 796 | pub fn is_polymorphic(self) -> bool { |
no test coverage detected