I just tested and the output seems to be deterministically ordered:
julia> x = map(string, subtypes(Any));
julia> y = sort!(map(string, subtypes(Any)));
julia> x == y
true
El sábado, 26 de diciembre de 2015, 12:52:51 (UTC-6), Ray Toal escribió:
>
> I noticed that
>
> *julia> **subtypes(Type)*
>
> *3-element Array{Any,1}:*
>
> * DataType *
>
> * TypeConstructor*
>
> * Union *
>
> and was wondering if there was any significance in the order of the
> subtypes. If not, could the method have produced a Set instead?
>
>