@returns true if this is a byte array.
| 882 | |
| 883 | /// @returns true if this is a byte array. |
| 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 |
no outgoing calls
no test coverage detected