LibJS: Add all of the DataView.prototype.set* methods

This commit is contained in:
Idan Horowitz 2021-06-14 02:02:53 +03:00 committed by Linus Groh
commit d7a70eb77c
Notes: sideshowbarker 2024-07-18 12:17:02 +09:00
8 changed files with 203 additions and 0 deletions

View file

@ -56,6 +56,8 @@ public:
static UnsignedBigInteger from_base10(const String& str);
String to_base10() const;
u64 to_u64() const;
const Vector<Word, STARTING_WORD_SIZE>& words() const { return m_words; }
void set_to_0();