Commit graph

3362 commits

Author SHA1 Message Date
Andrei Alexandrescu
6c3f6ee53e Merge pull request #479 from 9rnsr/fix_Proxy
fix std.typecons.Proxy
2012-03-30 06:29:08 -07:00
Andrei Alexandrescu
6a41af9bef Merge pull request #508 from quickfur/stdrange_docs
Improve std.range's documentation.
2012-03-30 06:28:06 -07:00
Andrei Alexandrescu
81dd3869fc Merge pull request #510 from Aatch/docfixes
Assorted documentation fixes until this gets pulled.
2012-03-30 06:27:34 -07:00
Andrei Alexandrescu
84a847cbe1 Merge pull request #462 from blackwhale/regex-fixes
fix Issue 7300 - std.regex.ShiftOr!dchar.search is broken
2012-03-30 06:26:15 -07:00
H. S. Teoh
9969d60a88 Fix issues raised in pull request. 2012-03-29 20:30:56 -07:00
H. S. Teoh
30d712161b - Replace Linux-specific definitions of stopped, signaled, etc., with
portable versions from core.sys.posix.sys.wait.
- Fix system() to return -1 on abnormal termination, not just
  exitstatus(status) which may be 0.
2012-03-28 07:48:07 -07:00
H. S. Teoh
62d9a71592 Indicate that std.algorithm.sort also returns SortedRange. 2012-03-28 07:43:39 -07:00
H. S. Teoh
dfd99cd91c Grammar correction. 2012-03-28 07:43:39 -07:00
H. S. Teoh
a16a5ac7ef A first stab at improving std.range's documentation. 2012-03-28 07:43:39 -07:00
James Miller
fba8c66dfa Fixes typo in randomShuffle documentation 2012-03-28 19:04:09 +13:00
James Miller
db7bf83a23 Fixed typo in documentation for countUntil 2012-03-28 16:53:34 +13:00
Andrei Alexandrescu
9273c74aa8 Merge branch 'master' of github.com:D-Programming-Language/phobos 2012-03-27 20:11:25 -06:00
Andrei Alexandrescu
9d7168be5f Fix documentation error in stableRemoveAny 2012-03-27 20:08:16 -06:00
Martin Nowak
c4db50c986 pointsTo moved to std.exception 2012-03-27 05:35:28 +03:00
H. S. Teoh
5f03c6b75d Add spacing to make example array output nicer. 2012-03-24 15:49:01 -07:00
H. S. Teoh
a27d82dc27 Document %( %| %) array formatting specifiers.
With juicy examples from Kenji Hara. :-)
2012-03-24 12:06:57 -07:00
jmdavis
84340af538 Some fixes to std.file's documentation.
getcwd wasn't showing up in the docs when they were generated on Linux,
because the versioning for it wasn't done correctly.
2012-03-23 22:03:48 -07:00
k-hara
01a8d9ab54 Add static assert 2012-03-24 12:51:57 +09:00
k-hara
cf7b014651 Make identity comparison more efficient 2012-03-24 12:06:50 +09:00
k-hara
d8d8da861b Fix std.typecons.Proxy for identity assignment 2012-03-24 12:06:50 +09:00
Dmitry Olshansky
16bd8e423a document isTwoWayCompatible
makes error messages understandable
2012-03-23 12:17:39 +04:00
Dmitry Olshansky
88ecf28752 fix Issue 7718 - regex and ctRegex produce different results
also fix unittest in std.range
2012-03-23 12:17:36 +04:00
Dmitry Olshansky
34683e4afb apply code review suggestions, extending SortedRange 2012-03-23 12:17:31 +04:00
Dmitry Olshansky
71b1c1a47a fix Issue 6217 - [GSOC] result of std.algorithm.map is not movable
It's so simple, and it's been ages as it was broken.
2012-03-23 12:17:28 +04:00
Dmitry Olshansky
abe9cb5861 add missing unittest for issue 7300 2012-03-23 12:17:25 +04:00
Dmitry Olshansky
e53e6d64e9 fix Issue 7300 - std.regex.ShiftOr!dchar.search is broken
Rework problematic memchr codepath to properly test for end of string. More importantly it's overall cleaner.
2012-03-23 12:17:23 +04:00
Dmitry Olshansky
ba5eecf086 clean up CTFE, workarounds-- 2012-03-23 12:17:20 +04:00
Dmitry Olshansky
05c142b802 Add fixed caching results of regex 2012-03-23 12:17:17 +04:00
Andrei Alexandrescu
5a7384f313 Merge pull request #486 from jmdavis/deprecated
Deprecation stuff for March
2012-03-22 22:50:55 -07:00
Andrei Alexandrescu
b90e2835eb Merge pull request #488 from 9rnsr/fix_aliasthis_fmt
std.format improvement for alias this type interaction
2012-03-22 22:49:32 -07:00
Andrei Alexandrescu
89106f3ea2 Merge pull request #504 from ntrel/typetuple-doc-fix
Fix using F!() syntax instead of F[] in typetuple.d documentation
2012-03-22 22:41:53 -07:00
dawg
47f5929059 workaround Bug 2962
- ICE with nested template functions
- there is no need to templatize bailOut
2012-03-22 23:52:52 +01:00
Nick Treleaven
22aa73ae92 Fix using F!() syntax instead of F[] in typetuple.d documentation
This applies for staticMap, allSatisfy, anySatisfy documentation.
2012-03-22 11:58:49 +00:00
Andrei Alexandrescu
20ab5c2c8d Merge pull request #503 from alexrp/master
Fix opCast() overloads in BitArray.
2012-03-20 11:27:49 -07:00
alexrp
5abc66aec1 Fix overloads of opCast() on BitArray. 2012-03-20 18:32:16 +01:00
Andrei Alexandrescu
8494d138e0 Merge pull request #500 from alexrp/master
Allow casting BitArray to size_t[].
2012-03-20 09:35:37 -07:00
k-hara
844b1e16ad final @property 2012-03-20 01:55:31 +09:00
k-hara
80f0da80f8 More @property 2012-03-20 01:03:05 +09:00
k-hara
348f68a159 Add @property more 2012-03-19 21:28:18 +09:00
Andrei Alexandrescu
ce83f49cf1 Add commonPrefix algorithm 2012-03-19 02:05:23 -05:00
alexrp
d70f621afd Allow casting BitArray to size_t[]. 2012-03-19 02:58:33 +01:00
Andrei Alexandrescu
7a98048be7 Merge pull request #497 from alexrp/master
A few improvements to BitArray docs.
2012-03-18 18:57:45 -07:00
jmdavis
61c3c09004 Fix dmd tests on Windows. 2012-03-17 19:03:13 -07:00
jmdavis
7513e81c51 Merged in latest master.
Conflicts:
	std/file.d
2012-03-17 17:44:51 -07:00
alexrp
4f8b530ba6 More improvements/fixes to BitArray docs. 2012-03-18 00:17:57 +01:00
Andrei Alexandrescu
b110565048 Merge pull request #496 from adamdruppe/variant-fix
coerce string to other types workaround
2012-03-17 11:08:40 -07:00
Dmitry Olshansky
097faaca84 fix Issue 7674 - regex replace requires escaped format
Kill unnecessary escaping in replace format string.
2012-03-17 21:41:25 +04:00
Adam D. Ruppe
30a47fa942 string to int coerce unittest 2012-03-17 13:19:59 -04:00
Andrei Alexandrescu
58f1b2bc51 Merge pull request #495 from blackwhale/issue-7138
dirEntries issues 7264 & 7138
2012-03-17 10:19:45 -07:00
Andrei Alexandrescu
31111228e5 Typos - thanks Paul D. Anderson 2012-03-17 11:37:22 -05:00