Skip to content

Commit

Permalink
Maybe even a bit faster still?
Browse files Browse the repository at this point in the history
  • Loading branch information
heetbeet committed Mar 21, 2024
1 parent eb36113 commit 208aa77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function concat(x::AbstractFloat)
end

function concat(x::Union{AbstractArray,Tuple})
return join((concat(i) for i in x), "")
return string((concat(i) for i in x)...)
end

function concat(x)
Expand Down

0 comments on commit 208aa77

Please sign in to comment.