( self, language: str )
| 1181 | return languagerepresentation.LanguageRepresentationFunction(handle=result) |
| 1182 | |
| 1183 | def language_representation_if_available( |
| 1184 | self, language: str |
| 1185 | ) -> Optional['languagerepresentation.LanguageRepresentationFunction']: |
| 1186 | result = core.BNGetFunctionLanguageRepresentationIfAvailable(self.handle, language) |
| 1187 | if result is None: |
| 1188 | return None |
| 1189 | return languagerepresentation.LanguageRepresentationFunction(handle=result) |
| 1190 | |
| 1191 | @property |
| 1192 | def type(self) -> 'types.FunctionType': |
no test coverage detected