| 57 | bool IsArray() const { return primitive_util::IsArrayType(element_type()); } |
| 58 | bool IsTuple() const { return element_type() == TUPLE; } |
| 59 | bool IsToken() const { return element_type() == TOKEN; } |
| 60 | bool IsOpaque() const { return element_type() == OPAQUE_TYPE; } |
| 61 | |
| 62 | // Returns true if no array dimension in the shape is dynamically sized. Tuple |
no outgoing calls