-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
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
Export RefImpl #2025
Comments
I just found out I can use |
For now, It seems like it's not being leaked to public API intentionally. |
Closing since |
This is intentional. The only reason class being used internally is performance. It's not meant to be extended. Use |
The best solution I found is to create a Storing the returned |
What problem does this feature solve?
I would like to extend
RefImpl
to create aRef
which can hold more state.Currently I would have to use
customRef
because I can't create a validRef
object by myself without knowingRefSymbol
, which is not exported either.What does the proposed API look like?
Just export the class and maybe look into setting properties as private or protected.
The text was updated successfully, but these errors were encountered: