[AUTO] Format files using DocumentFormat
Showing 1 of 3 files from the diff.
src/DataTables.jl
changed.
Other files ignored by Codecov
docs/make.jl
has changed.
test/runtests.jl
has changed.
@@ -11,7 +11,7 @@
Loading
11 | 11 | end |
|
12 | 12 | ||
13 | 13 | function fromNT(nt) |
|
14 | - | nt = map(i->i isa ReadOnlyArrays.ReadOnlyArray ? i : ReadOnlyArrays.ReadOnlyArray(i), nt) |
|
14 | + | nt = map(i -> i isa ReadOnlyArrays.ReadOnlyArray ? i : ReadOnlyArrays.ReadOnlyArray(i), nt) |
|
15 | 15 | tx = typeof(nt) |
|
16 | 16 | et = NamedTuple{propertynames(nt),Tuple{(eltype(fieldtype(tx, i)) for i in 1:fieldcount(typeof(nt)))...}} |
|
17 | 17 | return DataTable{et,typeof(nt)}(nt) |
@@ -21,7 +21,7 @@
Loading
21 | 21 | swap_dva_in(A::Array{<:DataValue}) = DataValueArray(A) |
|
22 | 22 | ||
23 | 23 | function DataTable(;cols...) |
|
24 | - | return fromNT(map(col->swap_dva_in(col), values(cols))) |
|
24 | + | return fromNT(map(col -> swap_dva_in(col), values(cols))) |
|
25 | 25 | end |
|
26 | 26 | ||
27 | 27 | function DataTable(table) |
@@ -49,7 +49,7 @@
Loading
49 | 49 | ||
50 | 50 | @inline function Base.getindex(dt::DataTable{T}, i::Int) where {T} |
|
51 | 51 | @boundscheck checkbounds(dt, i) |
|
52 | - | return map(col->@inbounds(getindex(col, i)), columns(dt)) |
|
52 | + | return map(col -> @inbounds(getindex(col, i)), columns(dt)) |
|
53 | 53 | end |
|
54 | 54 | ||
55 | 55 | function Base.show(io::IO, dt::DataTable) |
Files | Coverage |
---|---|
src/DataTables.jl | 92.31% |
Project Totals (1 files) | 92.31% |
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.