Julia对|>
这样的链接功能提供了很好的支持
x |> foo |> goo
但是对于具有多个输入和多个输出的功能,这不起作用:
julia> f(x, y) = (x+1, y+1)
julia> f(1, 2)
(2, 3)
julia> (1,2) |> f |> f
ERROR: MethodError: no method matching f(::Tuple{Int64,Int64})
Closest candidates are:
f(::Any, ::Any) at REPL[3]:1
Stacktrace:
[1] |>(::Tuple{Int64,Int64}, ::typeof(f)) at ./operators.jl:813
[2] top-level scope at none:0
我们可以定义f
接受元组以使其起作用。
julia> g((x,y)) = (x+1, y+1)
julia> (1,2) |> g |> g
(3, 4)
但是g
的定义不如f
清晰。在julia的文档中,我读到了函数正在调用元组,但实际上存在差异。
对此有任何优雅的解决方案吗?
答案 0 :(得分:4)
您还可以像这样使用拼写操作符...
:
julia> f(x, y) = (x+1, y+1)
f (generic function with 1 method)
julia> (1,2) |> x->f(x...) |> x->f(x...)
(3, 4)
答案 1 :(得分:1)
或者您可以使用数组
julia> f(x) = [x[1]+1,x[2]+1]
f (generic function with 1 method)
julia> [1,2] |> f |> f
2-element Array{Int64,1}:
3
4