forked from MartinNowak/dranges
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall.d
45 lines (40 loc) · 1.4 KB
/
all.d
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
32
33
34
35
36
37
38
39
40
41
42
43
44
// Written in the D programming language.
/**
A small module importing publicly _all other modules in this project.
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
Authors: Philippe Sigaud
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
module dranges.all;
public import dranges.algorithm,
dranges.associative,
dranges.binaryheap,
dranges.deepdup,
dranges.eager,
dranges.experiments,
dranges.functional,
dranges.graph,
dranges.graphalgorithm,
dranges.graphrange,
dranges.lambda,
dranges.morphism,
dranges.patternmatch,
// dranges.phobos_extension,
dranges.predicate,
dranges.priorityqueue,
dranges.properties,
dranges.queue,
dranges.range,
dranges.rangeofranges,
dranges.recursive,
dranges.reftuple,
dranges.templates,
dranges.traits,
dranges.treerange,
dranges.tuple,
dranges.tuplepattern,
dranges.tupletree,
dranges.typepattern,
dranges.typetuple,
dranges.variadic;