File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 87
87
):: Expression{T,N}
88
88
return fused_expression. tree
89
89
end
90
- function DE. get_operators (ex:: MultiScalarExpression , operators= nothing )
90
+ function DE. get_operators (
91
+ ex:: MultiScalarExpression , operators:: Union{AbstractOperatorEnum,Nothing} = nothing
92
+ )
91
93
return operators === nothing ? ex. metadata. operators : operators
92
94
end
93
- function DE. get_variable_names (ex:: MultiScalarExpression , variable_names= nothing )
95
+ function DE. get_variable_names (
96
+ ex:: MultiScalarExpression ,
97
+ variable_names:: Union{Nothing,AbstractVector{<:AbstractString}} = nothing ,
98
+ )
94
99
return variable_names === nothing ? ex. metadata. variable_names : variable_names
95
100
end
96
101
function Base. copy (ex:: MultiScalarExpression )
You can’t perform that action at this time.
0 commit comments