Skip to content

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

Open
Paalon wants to merge 1 commit intoJuliaData:masterfrom
Paalon:refactor-writer-1
Open

Refactoring of _print(::IO, ::Pair, ::Int, ::Bool).#178
Paalon wants to merge 1 commit intoJuliaData:masterfrom
Paalon:refactor-writer-1

Conversation

@Paalon
Copy link
Copy Markdown
Contributor

@Paalon Paalon commented Jun 13, 2024

No description provided.

Comment thread src/writer.jl
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
Copy Markdown
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 thread src/writer.jl
Comment on lines +69 to +70
p0 = first(pair)
p1 = last(pair)
Copy link
Copy Markdown
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