blob: 51396bfde16e9b559aea288e465cc8d88f072a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* Represents an implementation of string formatting which is inspired by Common
* Lisps FORMAT.
*
* I say inspired because there are a number of extensions to it, as well as a
* few things that either aren't implemented, or are implemented in a different
* way.
*
* @author bjculkin
*
*/
module clformat {
exports bjc.utils.ioutils.format.directives;
exports bjc.utils.ioutils.format;
exports bjc.utils.ioutils.format.exceptions;
requires transitive bjc.utils;
requires transitive esodata;
requires inflexion;
requires junit;
}
|