applicable
applicable(f, args...) -> Bool
Determine whether the given generic function has a method applicable to the given arguments.
julia> function f(x, y)
x + y
end;
julia> applicable(f, 1)
false
julia> applicable(f, 1, 2)
true
Examples
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.