Simple read-only vector-like interface to the pubkey data.
| 110 | |
| 111 | //! Simple read-only vector-like interface to the pubkey data. |
| 112 | unsigned int size() const { return GetLen(vch[0]); } |
| 113 | const unsigned char* data() const { return vch; } |
| 114 | const unsigned char* begin() const { return vch; } |
| 115 | const unsigned char* end() const { return vch + size(); } |
no test coverage detected