LibWeb/IDB: Implement count_the_records_in_a_range

This commit is contained in:
stelar7 2025-04-28 15:51:35 +02:00 committed by Jelle Raaijmakers
commit 694375d3ac
Notes: github-actions[bot] 2025-04-29 15:07:58 +00:00
4 changed files with 22 additions and 0 deletions

View file

@ -67,4 +67,14 @@ void ObjectStore::store_a_record(Record const& record)
});
}
u64 ObjectStore::count_records_in_range(GC::Ref<IDBKeyRange> range)
{
u64 count = 0;
for (auto const& record : m_records) {
if (range->is_in_range(record.key))
++count;
}
return count;
}
}