Closed cstjean closed 7 years ago
I should have a function like objects_in(tr::Trace) that returns all the args and kwargs as a Vector{typ}. Then I could write highlight(tr->any(x isa String && startswith(x, "Log:", objects_in(tr)), trace)
objects_in(tr::Trace)
Vector{typ}
highlight(tr->any(x isa String && startswith(x, "Log:", objects_in(tr)), trace)
TODO: document
I should have a function like
objects_in(tr::Trace)
that returns all the args and kwargs as aVector{typ}
. Then I could writehighlight(tr->any(x isa String && startswith(x, "Log:", objects_in(tr)), trace)
TODO: document