-
Notifications
You must be signed in to change notification settings - Fork 0
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
What's the usage of AsDomain? Seems like DomainRef suffices #2
Comments
I had modelled this after Ref in julia. Ref(5) is also not a concrete type and returns something else: julia> Ref(5)
Base.RefValue{Int64}(5) My thinking here was that some objects need not be modified when passed as a domain, for example |
But a |
That's true. I guess I originally thought that Only thing left on my mind is why |
I've removed AsDomain and just use DomainRef now. It is simpler. |
DomainSetsCore.jl/src/DomainSetsCore.jl
Line 82 in 4bd09eb
The text was updated successfully, but these errors were encountered: