-
Notifications
You must be signed in to change notification settings - Fork 246
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
move parensIfSpace
from Data.String
to Data.String.Base
#2024
Conversation
I don't think we should do this. Importing |
I agree: this feels like going in the wrong direction. I think the PR we actually need is the one getting rid of |
Oops, my bad - I didn't look deeply enough into I agree that the |
I and @Sofia-Insa spent some time on this and went through (surprisingly limited) resources on the internet, but we are not sure how to implement this. We think the type signature should be - showsPrec : Precedence → String → String
-- or
showsPrec : ℕ → String → String but we are not sure how the fixity would factor in while adding brackets (also, fractional fixity is a possibility - #1999). Should it be that if For example, should - showsPrec 7 "5 + 5 * 5" output - "5 + (5 * 5)" as https://stackoverflow.com/a/24207467/14746647 and https://stackoverflow.com/a/61160682/14746647 discuss implementing (or overriding?) Haskell's |
It is indeed tricky to find good documentation for this. I eventually found some in Haskell's Text.Show documentation. Certainly the precedence should not be As the Haskell doc indicates, precedence gives a total order, so the comparison to use is It is indeed rather odd that stdlib currently does not seem to use |
We don't really have show instances for anything beyond base types. |
So we shouldn't use the current |
I think we should definitely use |
I agree with all the discussion in here so far. Going to close this PR as I think we've agreed this is not the approach we want to follow. Further discussion can continue in #569. |
In PR#2016, in
src/Reflection/AST/Show.agda
,parensIfSpace
was the only function used fromData.String
, while the other were from Data.String.Base.In the stdl
parensIfSpace
is only called once : insrc/Reflection/AST/Show.agda
.