digitaldomain / DiscreteDifferentialGeometry.jl
Showing 1 of 3 files from the diff.
Other files ignored by Codecov

@@ -151,9 +151,9 @@
Loading
151 151
end
152 152
153 153
apply(α::B, u, k::KF) where {F<:ZForm, KF<:KVector{F}, B<:Blade} = apply(KVector(α), u, k)
154 -
apply(α, u, k::B) where {B<:Blade} = apply(α, u, KVector(k))
155 -
apply(α::B, u, k) where {B<:Blade} = apply(KVector(α), u, k)
156 -
apply(α::B1, u, k::B2) where {B1<:Blade, B2<:Blade} = apply(KVector(α), u, KVector(k))
154 +
155 +
const CN = Union{KVector, Blade}
156 +
apply(α::CN, u::CN, k::CN) = apply(KVector(α), KVector(u), KVector(k))  
157 157
158 158
"""
159 159
    apply(α, u)
Files Coverage
src 56.09%
Project Totals (2 files) 56.09%
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading