We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bac99f commit 9485f2dCopy full SHA for 9485f2d
src/inspect.jl
@@ -55,10 +55,12 @@ function inspect(io::IO, x::Symbolic;
55
hint && print(io, "\n\nHint: call SymbolicUtils.pluck(expr, line_number) to get the subexpression starting at line_number")
56
end
57
58
-function inspect(x::Symbolic; hint=true, metadata=inspect_metadata[])
+function inspect(x; hint=true, metadata=inspect_metadata[])
59
inspect(stdout, x; hint=hint, metadata=metadata)
60
61
62
+inspect(io::IO, x; kw...) = println(io, "Not Symbolic: $x")
63
+
64
"""
65
pluck(expr, n)
66
0 commit comments