Language is not package-friendly #208
Replies: 2 comments
-
For application scalability, I also want to create internal functions/getters in modules/stores. |
Beta Was this translation helpful? Give feedback.
-
Here's the best I could come up with with the current lack of restrictions. Everything private is in a |
Beta Was this translation helpful? Give feedback.
-
One cannot:
import
construction would be needed. Also, probably not exposing some of internal records should be possible.Additionally, any record should be distinguishable by it's namespace+name and not by it's structure. Otherwise, we'll easily have collisions. To support casting between values of same structure or substructure we would need
as
operator, as I have discussed in #188 (comment)Beta Was this translation helpful? Give feedback.
All reactions