diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-04-12 23:27:35 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-12 23:27:35 +0000 |
commit | c9f8d5af69e3b0bb6c8e58e74b61c016b2d099a1 (patch) | |
tree | e5ecc04904b1066c037a415347f6e909cb0521b3 /core/fxcrt/bytestring.h | |
parent | 008b928ea39904374bc0dc8888e27bc48c812bda (diff) | |
download | pdfium-c9f8d5af69e3b0bb6c8e58e74b61c016b2d099a1.tar.xz |
Add AsSpan() convenience method to fxcrt strings.
Make consistent with StringView methods.
Change-Id: Idf336895053a327262de924b6a525052e22a25da
Reviewed-on: https://pdfium-review.googlesource.com/30491
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/bytestring.h')
-rw-r--r-- | core/fxcrt/bytestring.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/fxcrt/bytestring.h b/core/fxcrt/bytestring.h index c68d2f6991..247238573d 100644 --- a/core/fxcrt/bytestring.h +++ b/core/fxcrt/bytestring.h @@ -84,6 +84,14 @@ class ByteString { return ByteStringView(raw_str(), GetLength()); } + // Explicit conversion to span. + // Note: Any subsequent modification of |this| will invalidate the result. + pdfium::span<const char> AsSpan() const { + return m_pData ? pdfium::span<const char>(m_pData->m_String, + m_pData->m_nDataLength) + : pdfium::span<const char>(); + } + // Note: Any subsequent modification of |this| will invalidate iterators. const_iterator begin() const { return m_pData ? m_pData->m_String : nullptr; } const_iterator end() const { |