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
@ocots @jbcaillau Before that I forgot, you are using quite often a `foo::Union{Nothing, ...}` inside your structures for the type of the attributes. The compiler doesn't like that and it leads to additional allocations because it needs to check at runtime that it's a Nothing or not.
You can change that for foo::T and at the top of your structure T <: Union{Nothing, ...}.
You can change that for
foo::T
and at the top of your structureT <: Union{Nothing, ...}
.Originally posted by @amontoison in #271 (comment)
The text was updated successfully, but these errors were encountered: