ndb: add content and owned_size

This commit is contained in:
William Casarin
2023-07-22 07:40:20 -07:00
parent 6d43754e71
commit 0263c11a94
3 changed files with 9 additions and 2 deletions

View File

@@ -17,6 +17,14 @@ struct NdbNote {
self.owned = data
}
var owned_size: Int? {
return owned?.count
}
var content: String {
String(cString: ndb_note_content(note), encoding: .utf8) ?? ""
}
var id: Data {
Data(buffer: UnsafeBufferPointer(start: ndb_note_id(note), count: 32))
}