Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upExpand memory management documentation #274
Comments
This comment has been minimized.
This comment has been minimized.
Yes, it will be well documented. It's at a very early stage right now.
That's one of the main goals. Never make developers think about things like this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
boomlinde commentedJun 19, 2019
Memory management in the documentation is illustrated by an example which shows a case where no manual memory management is necessary. The other is an example of an array, which is freed by a free method.
There is no other information on how the programmer can differentiate between cases where manual memory management is necessary and where it isn't, other than that leaks will be reported at run-time.
For example, can you put a struct on the heap (outside an array) and then free it with a function? Will interpolated strings have to be freed if they are much larger than the ones in the example? Is the "sum" of two strings a new string that can end up on the heap?
In general, I wonder what the long term plans for heap memory management are. I'd prefer manual memory management with optional automatic reference counting. That would set it apart from Go (memory management through GC) and Rust (memory management through complex lifetime policy and optional reference counting).
The less I have to think of special cases like that in the interpolated string example, the better.