@@ -495,7 +495,7 @@ julia> contains(main, tds, on = :g1 => :group)
495495 1
496496```
497497"""
498- function Base. contains (main:: Dataset , transaction:: AbstractDataset ; on = nothing , mapformats:: Union{Bool, Vector{Bool}} = true , stable = false , alg = HeapSort, accelerate = false )
498+ function Base. contains (main:: AbstractDataset , transaction:: AbstractDataset ; on = nothing , mapformats:: Union{Bool, Vector{Bool}} = true , stable = false , alg = HeapSort, accelerate = false )
499499 on === nothing && throw (ArgumentError (" `on` keyword must be specified" ))
500500 if ! (on isa AbstractVector)
501501 on = [on]
@@ -624,7 +624,7 @@ julia> antijoin(dsl, dsr, on = :year, mapformats = true) # Use formats for datas
624624 1 │ 2012 true
625625```
626626"""
627- function DataAPI. antijoin (dsl:: Dataset , dsr:: AbstractDataset ; on = nothing , mapformats:: Union{Bool, Vector{Bool}} = true , stable = false , alg = HeapSort, accelerate = false , view = false )
627+ function DataAPI. antijoin (dsl:: AbstractDataset , dsr:: AbstractDataset ; on = nothing , mapformats:: Union{Bool, Vector{Bool}} = true , stable = false , alg = HeapSort, accelerate = false , view = false )
628628 if view
629629 Base. view (dsl, .! contains (dsl, dsr, on = on, mapformats = mapformats, stable = stable, alg = alg, accelerate = accelerate), :)
630630 else
@@ -736,7 +736,7 @@ julia> semijoin(dsl, dsr, on = :year, mapformats = true) # Use formats for datas
736736 3 │ 2020 true
737737```
738738"""
739- function DataAPI. semijoin (dsl:: Dataset , dsr:: AbstractDataset ; on = nothing , mapformats:: Union{Bool, Vector{Bool}} = true , stable = false , alg = HeapSort, accelerate = false , view = false )
739+ function DataAPI. semijoin (dsl:: AbstractDataset , dsr:: AbstractDataset ; on = nothing , mapformats:: Union{Bool, Vector{Bool}} = true , stable = false , alg = HeapSort, accelerate = false , view = false )
740740 if view
741741 Base. view (dsl, contains (dsl, dsr, on = on, mapformats = mapformats, stable = stable, alg = alg, accelerate = accelerate), :)
742742 else
0 commit comments