Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GR-62666] Implement Immutable ArrayBuffers #895

Open
woess opened this issue Feb 28, 2025 · 0 comments
Open

[GR-62666] Implement Immutable ArrayBuffers #895

woess opened this issue Feb 28, 2025 · 0 comments
Assignees

Comments

@woess
Copy link
Member

woess commented Feb 28, 2025

TL;DR

We plan to implement Immutable ArrayBuffers in GraalJS.

Details

This proposal enables buffers to be immutable and adds to ArrayBuffer.prototype one read-only accessor

  • immutable: boolean -- is this buffer immutable, or can its contents be changed?

and two methods

  • transferToImmutable(newByteLength?: number): ArrayBuffer -- move the contents of the original buffer into a new immutable buffer, detach the original buffer, and return the new buffer.
  • sliceToImmutable(start?: number, end?: number): ArrayBuffer -- create a new immutable buffer from a range of the original buffer's contents in a way that allows implementations to easily minimize and sometimes even eliminate copying them.

An immutable buffer cannot be detached, resized, or further transferred. Its maxByteLength is the same as its byteLength. A DataView or TypedArray using an immutable buffer as its backing store can be frozen and immutable.

@woess woess added this to the Planned for the Future milestone Feb 28, 2025
@woess woess moved this to Todo in GraalJS Roadmap Feb 28, 2025
@iamstolis iamstolis self-assigned this Mar 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Todo
Development

No branches or pull requests

2 participants