Add missing write method

This commit is contained in:
DBotThePony 2024-02-19 20:18:53 +07:00
parent 7011ab8ace
commit 8216c2298a
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -409,6 +409,10 @@ class BTreeDB6 private constructor(val file: File, private var reader: RandomAcc
}
}
fun write(key: ByteKey, value: ByteArray) {
write(key, value, 0, value.size)
}
private fun allocBlock(type: BlockType): Block {
return allocBlocks(type, 1)[0]
}