@@ -113,11 +113,13 @@ Base.findmin(f, col::SubOrDSCol) = findmin(f, __!(col))
113113Base. findmin (col:: SubOrDSCol ) = findmin (identity, __! (col))
114114Base. cumsum (col:: SubOrDSCol ; missings= :ignore ) = cumsum (__! (col), missings= missings)
115115Base. cumprod (col:: SubOrDSCol ; missings= :ignore ) = cumprod (__! (col), missings= missings)
116+ IMD. cumsum (col:: SubOrDSCol ; missings= :ignore ) = cumsum (__! (col), missings= missings)
117+ IMD. cumprod (col:: SubOrDSCol ; missings= :ignore ) = cumprod (__! (col), missings= missings)
116118cummin (col:: SubOrDSCol ; missings= :ignore ) = cummin (__! (col), missings= missings)
117119cummax (col:: SubOrDSCol ; missings= :ignore ) = cummax (__! (col), missings= missings)
118120
119- topk (col:: SubOrDSCol , k; rev= false , lt = < , by = identity, threads = true ) = topk (__! (col), k, rev= rev, lt = lt, by = by, threads = threads)
120- topkperm (col:: SubOrDSCol , k; rev= false , lt = < , by = identity, threads = true ) = topkperm (__! (col), k, rev= rev, lt = lt, by = by, threads = threads)
121+ topk (col:: SubOrDSCol , k; rev= false , lt= < , by= identity, threads= true ) = topk (__! (col), k, rev= rev, lt= lt, by= by, threads= threads)
122+ topkperm (col:: SubOrDSCol , k; rev= false , lt= < , by= identity, threads= true ) = topkperm (__! (col), k, rev= rev, lt= lt, by= by, threads= threads)
121123lag (col:: SubOrDSCol ; default= missing ) = lag (__! (col), default= default)
122124lag (col:: SubOrDSCol , k; default= missing ) = lag (__! (col), k, default= default)
123125lead (col:: SubOrDSCol ; default= missing ) = lead (__! (col), default= default)
0 commit comments