Sobhan Mohammadpour

Results 70 comments of Sobhan Mohammadpour

I'd argue that it's hard to do the check correctly. The check should only be done when two structural zeros need to be compared which is a bit complicated. Always...

honestly not sure, i'm just playing the devil's advocate.

```julia sparse([SVector(1,2), SVector(2)]) == sparse(Union{SVector{2,Int},SVector{1,Int},SVector{3,Int}}[SVector(1,2), SVector(2)]) ``` does not have zero but has iszero

can someone else test this? it's fine on one machine and not on another :/

no? i'm trying to do request with `aiohttp.ClientSession`. by definition that's a client side thing, right?

was `vcat` using the wrong length?

yes, sorry I was behind a deadline :sweat_smile: @mjacobse, thanks for the code.

You can always add these at your own risk as I have not idea what they will break. ```julia julia> Base.zero(::String) = "" julia> Base.iszero(x::String) = length(x) == 0 julia>...

I agree. @ViralBShah @dkarrasch @LilithHafner Does it make sense to you?