File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ Standard library changes
47
47
48
48
* Verbose ` display ` of ` Char ` (` text/plain ` output) now shows the codepoint value in standard-conforming ` "U+XXXX" ` format ([ #33291 ] ).
49
49
50
+ * ` methods ` now accepts passing a module (or a list thereof) to filter methods defined in it ([ #33403 ] ).
50
51
51
52
#### Libdl
52
53
Original file line number Diff line number Diff line change @@ -867,6 +867,9 @@ Return the method table for `f`.
867
867
If `types` is specified, return an array of methods whose types match.
868
868
If `module` is specified, return an array of methods defined in this module.
869
869
A list of modules can also be specified as an array or tuple.
870
+
871
+ !!! compat "Julia 1.4"
872
+ At least Julia 1.4 is required for specifying a module.
870
873
"""
871
874
function methods (@nospecialize (f), @nospecialize (t),
872
875
@nospecialize (mod:: Union{Module,AbstractArray{Module},Tuple{Vararg{Module}}} = ()))
You can’t perform that action at this time.
0 commit comments