Julia 中多个函数的一个 Docstring
One Docstring for multiple Functions in Julia
我有两个功能
function foo() end
function bar() end
是否可以像在 R 中那样为两个函数编写一个文档字符串?
您可以使用通用文档字符串定义一个字符串并将其插入到您的函数的文档字符串中,例如
julia> docstr = "hello world!"
"hello world!"
julia> "$docstr"
function foo() end
foo
help?> foo
search: foo floor pointer_from_objref OverflowError RoundFromZero unsafe_copyto! functionloc WhosebugError
hello world!
julia> "$docstr"
function bar() end
bar
help?> bar
search: bar baremodule SubArray GlobalRef clipboard BitArray backtrace BitMatrix catch_backtrace AbstractRange
hello world!
我有两个功能
function foo() end
function bar() end
是否可以像在 R 中那样为两个函数编写一个文档字符串?
您可以使用通用文档字符串定义一个字符串并将其插入到您的函数的文档字符串中,例如
julia> docstr = "hello world!"
"hello world!"
julia> "$docstr"
function foo() end
foo
help?> foo
search: foo floor pointer_from_objref OverflowError RoundFromZero unsafe_copyto! functionloc WhosebugError
hello world!
julia> "$docstr"
function bar() end
bar
help?> bar
search: bar baremodule SubArray GlobalRef clipboard BitArray backtrace BitMatrix catch_backtrace AbstractRange
hello world!