We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbcde0b commit d63fe22Copy full SHA for d63fe22
src/Spaces/Spaces.jl
@@ -8,7 +8,7 @@ include("SubSpace.jl")
8
include("QuotientSpace.jl")
9
10
11
-⊕(A::Space,B::Space) = domainscompatible(A,B) ? SumSpace(A,B) : PiecewiseSpace(A,B)
+⊕(A::Space,B::Space)::Any = domainscompatible(A,B) ? SumSpace(A,B) : PiecewiseSpace(A,B)
12
⊕(f::Fun,g::Fun) = Fun(space(f) ⊕ space(g), interlace(coefficients(f),coefficients(g)))
13
14
⊕(f::Fun,g::Fun,h::Fun...) = ⊕((f ⊕ g), h...)
0 commit comments