streams: Add SpanReader ignore method

Needed to deserialize some types from spans like CScripts
This commit is contained in:
Russell Yanofsky 2021-12-17 15:56:37 -05:00
parent abfc8c901d
commit 82a379eca8

View file

@ -182,6 +182,11 @@ public:
memcpy(dst.data(), m_data.data(), dst.size()); memcpy(dst.data(), m_data.data(), dst.size());
m_data = m_data.subspan(dst.size()); m_data = m_data.subspan(dst.size());
} }
void ignore(size_t n)
{
m_data = m_data.subspan(n);
}
}; };
/** Double ended buffer combining vector and stream-like interfaces. /** Double ended buffer combining vector and stream-like interfaces.