We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed62d3 commit 0ace5f3Copy full SHA for 0ace5f3
src/abstractdataset/dscol.jl
@@ -160,3 +160,8 @@ function Base.sort!(col::SubOrDSCol; kws...)
160
end
161
Base.sort(col::SubOrDSCol; kws...) = sort(__!(col); kws...)
162
Base.sortperm(col::SubOrDSCol; kws...) = sortperm(__!(col); kws...)
163
+
164
+Base.searchsortedfirst(col::SubOrDSCol, x; kws...) = searchsortedfirst(__!(col), x; kws...)
165
+Base.searchsortedlast(col::SubOrDSCol, x; kws...) = searchsortedlast(__!(col), x; kws...)
166
+Base.searchsorted(col::SubOrDSCol, x; kws...) = searchsorted(__!(col), x; kws...)
167
0 commit comments