@returns true if this is a byte array or a string
| 884 | bool isByteArray() const { return m_arrayKind == ArrayKind::Bytes; } |
| 885 | /// @returns true if this is a byte array or a string |
| 886 | bool isByteArrayOrString() const { return m_arrayKind != ArrayKind::Ordinary; } |
| 887 | /// @returns true if this is a string |
| 888 | bool isString() const { return m_arrayKind == ArrayKind::String; } |
| 889 | Type const* baseType() const { solAssert(!!m_baseType, ""); return m_baseType; } |
no outgoing calls
no test coverage detected