JuliaArrays / ArraysOfArrays.jl

Efficient storage and handling of nested arrays in Julia
Other
43 stars 9 forks source link

fix `nestedview` docstring #23

Closed bjarthur closed 2 years ago

bjarthur commented 2 years ago

the N and M are backwards in the docstring:

julia> Af=reshape(1:3*3*5, 3,3,5);

julia> size(Af)
(3, 3, 5)

julia> An=nestedview(Af,2);

julia> size(An)
(5,)

julia> size(An[1])
(3, 3)

julia> ndims(An[1])
2
codecov[bot] commented 2 years ago

Codecov Report

Merging #23 (a6f012d) into main (5a25550) will not change coverage. The diff coverage is n/a.

@@           Coverage Diff           @@
##             main      #23   +/-   ##
=======================================
  Coverage   95.78%   95.78%           
=======================================
  Files           7        7           
  Lines         451      451           
=======================================
  Hits          432      432           
  Misses         19       19           
Impacted Files Coverage Δ
src/functions.jl 100.00% <ø> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 5a25550...a6f012d. Read the comment docs.

oschulz commented 2 years ago

Thanks @bjarthur !

oschulz commented 2 years ago

https://github.com/JuliaRegistries/General/pull/57680