Merge branch 'master' of github.com:D-Programming-Language/phobos

Conflicts:
	posix.mak
This commit is contained in:
Andrei Alexandrescu 2011-04-06 00:32:29 -05:00
commit 055cea0595
15 changed files with 7451 additions and 4778 deletions

View file

@ -489,7 +489,7 @@ $(D array) at position $(D pos).
Example:
---
int[] a = [ 1, 2, 3, 4 ];
a.insert(2, [ 1, 2 ]);
a.insert(2, [ 1, 2 ]);
assert(a == [ 1, 2, 1, 2, 3, 4 ]);
---
*/