10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 06:01:49 +02:00

Add adtitional function to DOICache

This commit is contained in:
Mickaël Véril 2019-12-19 14:45:31 +01:00
parent 68604bea6c
commit 06ac6fdcfe

View File

@ -33,4 +33,8 @@ class DOICache{
get size(){
return this._doimap.size()
}
keys() { return this._doimap.keys()}
values() { return this._doimap.values()}
entries() { return this._doimap.entries()}
[Symbol.iterator]() { return this.values()}
}