-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathQueryOperators.jl
More file actions
31 lines (25 loc) · 872 Bytes
/
QueryOperators.jl
File metadata and controls
31 lines (25 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module QueryOperators
using DataStructures
using IteratorInterfaceExtensions
using TableShowUtils
import DataValues
export Grouping, key
include("operators.jl")
include("NamedTupleUtilities.jl")
include("enumerable/enumerable.jl")
include("enumerable/enumerable_groupby.jl")
include("enumerable/enumerable_join.jl")
include("enumerable/enumerable_groupjoin.jl")
include("enumerable/enumerable_orderby.jl")
include("enumerable/enumerable_map.jl")
include("enumerable/enumerable_filter.jl")
include("enumerable/enumerable_mapmany.jl")
include("enumerable/enumerable_defaultifempty.jl")
include("enumerable/enumerable_count.jl")
include("enumerable/enumerable_take.jl")
include("enumerable/enumerable_drop.jl")
include("enumerable/enumerable_unique.jl")
include("enumerable/enumerable_pivot.jl")
include("enumerable/show.jl")
include("source_iterable.jl")
end # module