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:
parent
8e1df36588
commit
fee65f6453
6 changed files with 76 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue