-
Baselet.$fprovides a possibly-optimized version of$fexported fromBase(e.g.,Baselet.sort(::Tuple)). -
Baselet.Specialized.$fprovides a function$fwith a subset of API fromBase.$fthat is guaranteed to have optimized specializations (e.g.,Baselet.Specialized.sort(::Tuple)). -
Baselet.$ffallbacks toBase.$fif associatedBaselet.Specialized.$fis not found. For example,Baselet.sort(::Vector)just callsBase.sort(::Vector).
The list of supported functions can be found by typing
Baselet.Specialized. + TAB in the REPL:
julia> using Baselet
julia> Baselet.Specialized.
accumulate cumprod findall flatten isdisjoint sort
all cumsum findfirst foreach issubset symdiff
any enumerate findlast getindex maximum union
argmax extrema findmax in minimum unique
argmin filter findmin intersect setdiff zip