02:33
<devsnek>
i kinda want a new DataView(ArrayBufferView) shortcut for new DataView(view.buffer, view.byteOffset, view.byteLength)
02:37
<Jack Works>
We have ArrayBufferView in the language?
05:11
<yodacode>
hello! I'm new to the tc39 proposal system, but I just wanted to ask if anyone would find a syntax feature like this useful:
instead of using foo = foo.bar, just using foo = .bar or foo .= bar. this just came to my mind since I use things like array = array.map and array = array.filter a lot.
06:10
<Jack Works>
is foo = foo.bar common enough to add syntax for it?
06:11
<Jack Works>
in my daily programming I barely write that (maybe because I'm using TypeScript and mostly it doesn't pass the type check)
09:03
<Ashley Claymore>
hello! I'm new to the tc39 proposal system, but I just wanted to ask if anyone would find a syntax feature like this useful:
instead of using foo = foo.bar, just using foo = .bar or foo .= bar. this just came to my mind since I use things like array = array.map and array = array.filter a lot.
There is a thread here https://es.discourse.group/t/operator/586
09:07
<YodaCode>
interesting, thanks!
22:01
<devsnek>
do any engines optimize queue-like array usage?
23:14
<Ashley Claymore>
This post seems to suggest they do/did: https://esdiscuss.org/topic/queue-feature-request#content-3
23:14
<Ashley Claymore>

“In WebKit the array implementation switches to an amortized constant time deque if you use push/pop/shift/unshift in anger.”

23:17
<devsnek>
intresting