Skip to content

Commit f2ebe9f

Browse files
authored
most -> Base.front (#89)
1 parent 50adfd2 commit f2ebe9f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "QuasiArrays"
22
uuid = "c4ea9172-b204-11e9-377d-29865faadc5c"
33
authors = ["Sheehan Olver <[email protected]>"]
4-
version = "0.9.6"
4+
version = "0.9.7"
55

66
[deps]
77
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/QuasiArrays.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import LazyArrays: MemoryLayout, UnknownLayout, Mul, ApplyLayout, BroadcastLayou
4646
MulStyle, MulAddStyle, LazyArrayApplyStyle, combine_mul_styles, DefaultArrayApplyStyle,
4747
Applied, flatten, _flatten, arguments, _mat_mul_arguments, _vec_mul_arguments, _mul_arguments,
4848
rowsupport, colsupport, tuple_type_memorylayouts, applylayout, broadcastlayout,
49-
LdivStyle, most, InvLayout, PInvLayout, sub_materialize, lazymaterialize,
49+
LdivStyle, InvLayout, PInvLayout, sub_materialize, lazymaterialize,
5050
_mul, rowsupport, DiagonalLayout, adjointlayout, transposelayout, conjlayout,
5151
sublayout, call, LazyArrayStyle, layout_getindex, _broadcast2broadcastarray, _applyarray_summary, _broadcastarray_summary,
5252
_broadcasted_mul, simplifiable, simplify

src/quasireducedim.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ for Sum in (:sum, :cumsum)
283283
*($Sum(first(a); dims=1), tail(a)...)
284284
else
285285
@assert d == 2
286-
*(most(a)..., $Sum(last(a); dims=2))
286+
*(Base.front(a)..., $Sum(last(a); dims=2))
287287
end
288288
end
289289
end

0 commit comments

Comments
 (0)