MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / inner_type

Method inner_type

tools/api.py:80–86  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

78 return Type('const ' + self.name)
79
80 def inner_type(self) -> Optional['Type']:
81 i = self.name.find('<')
82 j = self.name.rfind('>')
83 if i > 0 and j > 0:
84 return Type(self.name[i + 1:j])
85 else:
86 return None
87
88 def remove_generic(self) -> 'Type':
89 i = self.name.find('<')

Callers 2

vector_c_wrapFunction · 0.80

Calls 2

TypeClass · 0.85
findMethod · 0.45

Tested by

no test coverage detected