(typ)
| 48 | remove = clear = extend = pop = insert = append |
| 49 | |
| 50 | def is_basic(typ): |
| 51 | return isinstance(typ, str) and (typ[:4] in ('uint', 'bool') or typ == 'byte') |
| 52 | |
| 53 | def is_constant_sized(typ): |
| 54 | if is_basic(typ): |
no outgoing calls
no test coverage detected