-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
display and printingAesthetics and correctness of printed representations of objects.Aesthetics and correctness of printed representations of objects.
Description
julia> which(Core.Compiler.is_pure_intrinsic_infer, (Core.IntrinsicFunction,)).sig
Tuple{typeof(Core.Compiler.is_pure_intrinsic_infer), Core.IntrinsicFunction} # good
julia> which(Core.Compiler.is_pure_intrinsic_infer, (Core.IntrinsicFunction,)).sig |> Core.println
Tuple{typeof(Core.Compiler.is_pure_intrinsic_infer), typeof(Core.IntrinsicFunction)} # bad
julia> Core.IntrinsicFunction.name
typename(Core.IntrinsicFunction) # good
julia> Core.IntrinsicFunction.name.name
:IntrinsicFunction # good
julia> Core.IntrinsicFunction.name.mt.name
:IntrinsicFunction # bad
Metadata
Metadata
Assignees
Labels
display and printingAesthetics and correctness of printed representations of objects.Aesthetics and correctness of printed representations of objects.