| 204 | typedef vector_type::reverse_iterator reverse_iterator; |
| 205 | |
| 206 | explicit CDataStream(int nTypeIn, int nVersionIn) |
| 207 | : nType{nTypeIn}, |
| 208 | nVersion{nVersionIn} {} |
| 209 | |
| 210 | explicit CDataStream(Span<const uint8_t> sp, int type, int version) : CDataStream{AsBytes(sp), type, version} {} |
| 211 | explicit CDataStream(Span<const value_type> sp, int nTypeIn, int nVersionIn) |
nothing calls this directly
no test coverage detected