1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

LibJS: Implement Set.prototype.union

This commit is contained in:
Idan Horowitz 2022-12-01 23:04:30 +02:00 committed by Linus Groh
parent 8e1df36588
commit fee65f6453
6 changed files with 76 additions and 0 deletions

View file

@ -36,6 +36,8 @@ public:
auto begin() { return m_values->begin(); }
auto end() const { return m_values->end(); }
NonnullGCPtr<Set> copy() const;
private:
explicit Set(Object& prototype);