| 73 | solRequire((m_pos + 1) < _metadata.size(), CBORException, "Input too short."); |
| 74 | } |
| 75 | unsigned mapItemCount() |
| 76 | { |
| 77 | solRequire(nextType() == MajorType::Map, CBORException, "Fixed-length map expected."); |
| 78 | return readLength(); |
| 79 | } |
| 80 | std::string readKey() |
| 81 | { |
| 82 | return readString(); |