|
Revision 232, 1.0 kB
(checked in by Abscissa, 9 months ago)
|
DMD 2.055 compatibility.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
// SemiTwist Library |
|---|
| 2 |
// Written in the D programming language. |
|---|
| 3 |
|
|---|
| 4 |
/++ |
|---|
| 5 |
Author: |
|---|
| 6 |
$(WEB www.semitwist.com, Nick Sabalausky) |
|---|
| 7 |
|
|---|
| 8 |
This has been tested to work with DMD 2.052 through 2.055 |
|---|
| 9 |
|
|---|
| 10 |
In SVN comments: |
|---|
| 11 |
(B): Breaking changes |
|---|
| 12 |
(NB): Non-Breaking changes |
|---|
| 13 |
+/ |
|---|
| 14 |
|
|---|
| 15 |
// Potentially handy note: |
|---|
| 16 |
// DMD output capturing for Programmer's Notepad: |
|---|
| 17 |
// ((.)*: )?(warning - )?([ \t]*instantiatied in )?((.)*@)?%f\(%l(:%c)?\): |
|---|
| 18 |
|
|---|
| 19 |
//TODO*: Make getter/getterLazy return const version when appropriate (ie arrays, other ref-ish types) |
|---|
| 20 |
|
|---|
| 21 |
module semitwist.util.all; |
|---|
| 22 |
|
|---|
| 23 |
public import semitwist.util.array; |
|---|
| 24 |
public import semitwist.util.container; |
|---|
| 25 |
public import semitwist.util.ctfe; |
|---|
| 26 |
public import semitwist.util.functional; |
|---|
| 27 |
public import semitwist.util.io; |
|---|
| 28 |
public import semitwist.util.process; |
|---|
| 29 |
public import semitwist.util.mixins; |
|---|
| 30 |
public import semitwist.util.os; |
|---|
| 31 |
public import semitwist.util.reflect; |
|---|
| 32 |
public import semitwist.util.text; |
|---|
| 33 |
public import semitwist.util.unittests; |
|---|
| 34 |
public import semitwist.util.ver; |
|---|