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
Currently, list types are expressed as List<T>. A more compact way would be to express a list as [T]. This might make it easier to see what is going on with more complex types. For example, consider the type List<List<(ComponentInstance, Classifier, Long)>?>. With square brackets, this type would be expressed as [[(ComponentInstance, Classifier, Long)]?].
The text was updated successfully, but these errors were encountered:
Currently, list types are expressed as
List<T>
. A more compact way would be to express a list as[T]
. This might make it easier to see what is going on with more complex types. For example, consider the typeList<List<(ComponentInstance, Classifier, Long)>?>
. With square brackets, this type would be expressed as[[(ComponentInstance, Classifier, Long)]?]
.The text was updated successfully, but these errors were encountered: