@@ -1111,17 +1111,21 @@ function show_nd(io::IO, a::AbstractArray, limit, print_matrix, label_slices)
1111
1111
cartesianmap (print_slice, tail)
1112
1112
end
1113
1113
1114
- function whos (m:: Module , pattern:: Regex )
1115
- for v in sort (names (m))
1116
- s = string (v)
1117
- if isdefined (m,v) && ismatch (pattern, s)
1118
- println (rpad (s, 30 ), summary (eval (m,v)))
1114
+ function whos (m:: Module , pattern:: Regex ; filter= [])
1115
+ filtertypes = applicable (start, filter) ?
1116
+ filter : [filter]
1117
+ filtertest (var) = ! any (T -> typeof (var) <: T , filtertypes)
1118
+ for n in sort (names (m))
1119
+ s = string (n)
1120
+ v = eval (m,n)
1121
+ if isdefined (m,n) && ismatch (pattern, s) && filtertest (v)
1122
+ println (rpad (s, 30 ), summary (v))
1119
1123
end
1120
1124
end
1121
1125
end
1122
- whos () = whos (r" " )
1123
- whos (m:: Module ) = whos (m, r" " )
1124
- whos (pat:: Regex ) = whos (current_module (), pat)
1126
+ whos (;filter = Module ) = whos (r" " ; filter = filter )
1127
+ whos (m:: Module ; filter = [] ) = whos (m, r" " ; filter = filter )
1128
+ whos (pat:: Regex ; filter = [] ) = whos (current_module (), pat; filter = filter )
1125
1129
1126
1130
# global flag for limiting output
1127
1131
# TODO : this should be replaced with a better mechanism. currently it is only
0 commit comments