@returns true if this is 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; } |
| 890 | Type const* finalBaseType(bool breakIfDynamicArrayType) const; |
| 891 | u256 const& length() const { return m_length; } |
no outgoing calls
no test coverage detected