Skip to content
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

Refactoring of _print(::IO, ::Pair, ::Int, ::Bool). #178

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Paalon
Copy link
Contributor

@Paalon Paalon commented Jun 13, 2024

No description provided.

if (pair[2] isa AbstractDict || pair[2] isa AbstractVector) && !isempty(pair[2])
print(io, "\n") # a line break is needed before a recursive structure
if (p1 isa AbstractDict || p1 isa AbstractVector) && !isempty(p1)
print(io, '\n') # a line break is needed before a recursive structure
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure writing a character is better than writing a string? I'm finding the former to be slower and having an allocation (although I have no idea why that should be necessary).

Comment on lines +69 to +70
p0 = first(pair)
p1 = last(pair)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These names are not so important but I would have gone for p1 and p2 rather than p0 and p1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants