You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MethodError: no method matching length(::FixedTimeZone)
The workaround is ZonedDateTime.([now(), now(), now()], Ref(tz"UTC"))
Which works fine.
But since we take broadcasting seriously we should be able to set the broadcaststyle of an AbstractTimeZone to be scalar-like.
Then the original example will work
The text was updated successfully, but these errors were encountered:
In julia 1.0 broadcasting defaults to iterating.
So if you do say
you get the error
MethodError: no method matching length(::FixedTimeZone)
The workaround is
ZonedDateTime.([now(), now(), now()], Ref(tz"UTC"))
Which works fine.
But since we take broadcasting seriously we should be able to set the broadcaststyle of an
AbstractTimeZone
to be scalar-like.Then the original example will work
The text was updated successfully, but these errors were encountered: