LibWeb/IDB: Implement retrieve_multiple_values_from_an_object_store

This commit is contained in:
stelar7 2025-05-08 23:36:18 +02:00 committed by Shannon Booth
commit ddaae635ac
Notes: github-actions[bot] 2025-05-12 20:29:36 +00:00
4 changed files with 49 additions and 0 deletions

View file

@ -56,6 +56,7 @@ public:
u64 count_records_in_range(GC::Ref<IDBKeyRange> range);
Optional<Record&> first_in_range(GC::Ref<IDBKeyRange> range);
void clear_records();
GC::ConservativeVector<Record> first_n_in_range(GC::Ref<IDBKeyRange> range, Optional<WebIDL::UnsignedLong> count);
protected:
virtual void visit_edges(Visitor&) override;