1 /**
2  * Helpful niknaks or "things" that you may grasp for now and then
3  *
4  * Authors: Tristan Brice Velloza Kildaire (deavmi)
5  */
6 module niknaks;
7 
8 /**
9  * Functional tooling
10  *
11  * Think about predicates etc.
12  */
13 public import niknaks.functional;
14 
15 /**
16  * Binary tooling
17  *
18  * Bytes, bits and binary tooling
19  */
20 public import niknaks.bits;
21 
22 /**
23  * Arrays tooling
24  *
25  * Unique element generation, prescence
26  * checking etc.
27  */
28 public import niknaks.arrays;
29 
30 /**
31  * Debugging tools
32  *
33  * Useful methods for debugging
34  * data structures
35  */
36 public import niknaks.debugging;
37 
38 /**
39  * Container types
40  *
41  * Useful data structures
42  * that are templatised
43  */
44 public import niknaks.containers;
45 
46 /** 
47  * Configuration management
48  *
49  * Configuration entries and
50  * a registry in which to
51  * manage a set of them
52  */
53 public import niknaks.config;
54 
55 /**
56  * Text manipulation
57  */
58 public import niknaks.text;
59 
60 /**
61  * Template-oriented routines
62  */
63 public import niknaks.meta;