IsSchema returns whether the key is a schema key.
()
| 346 | |
| 347 | // IsSchema returns whether the key is a schema key. |
| 348 | func (p ParsedKey) IsSchema() bool { |
| 349 | return p.bytePrefix == ByteSchema |
| 350 | } |
| 351 | |
| 352 | // IsType returns whether the key is a type key. |
| 353 | func (p ParsedKey) IsType() bool { |
no outgoing calls