phobos/std
Nathan Sashihara afe9cb5e1a Adjust some assert(a == b) examples in std.bigint to improve DDoc runnable examples
Some public unit tests are currently being translated into e.g.
https://dlang.org/phobos/std_bigint.html#.BigInt.opCast.3
---
// BigInts that fall somewhere between two non-infinite floats/doubles
// are rounded to the closer value when cast to float/double.
writeln(0x1.aaa_aaep+28f); // cast(float)BigInt(0x1aaa_aae7)
---
which is not confidence-inspiring. Additionally writeln will default to
scientific notation instead of hex format here.
2021-03-18 10:05:58 +01:00
..
algorithm Fix incorrect usage of "verify" in docs 2021-03-10 11:23:28 -05:00
container Merge pull request #7745 from kinke/emplace 2021-01-25 15:36:04 +08:00
datetime Fix Issue 21700 - Long deprecated Stopwatch std.datetime is still not removed 2021-03-12 13:05:13 +01:00
digest Use core.bitop.rol instead of defining own rotateLeft 2021-03-13 03:34:00 +01:00
experimental Remove spurious __EOF__ hiding existing declarations/tests 2021-02-01 16:42:37 +01:00
format std.format: Refactor packaged (step 2): Make imports local and selective. 2021-03-17 12:55:00 +01:00
internal Throughout Phobos use core.math intrinsics instead of std.math wrappers 2021-03-02 07:09:08 +01:00
net Replace is(Unqual!T == Unqual!U) with is(immutable T == immutable U) for speed & memory usage 2020-08-03 15:07:32 +02:00
range Remove comment in doc regarding incorrectness of Transpose.save 2021-03-11 16:41:12 +01:00
regex Get rid of std.conv.emplace[Ref](), use core[.internal].lifetime 2021-01-17 16:02:25 +01:00
uni Fix a few places where opDollar could be an alias of length 2020-11-11 02:09:56 +01:00
windows Replace 'Issue XXX' with Bugzilla links 2020-04-13 16:28:09 +09:00
array.d Miscellaenous improvements to std.array unit tests 2021-03-08 18:40:44 +02:00
ascii.d Reduce the number of isAggregateType!T checks 2020-08-18 03:50:12 +02:00
base64.d Fix Issue 21707 - std.base64: Faulty input creates range error instead of Base64Exception 2021-03-17 00:05:13 +01:00
bigint.d Adjust some assert(a == b) examples in std.bigint to improve DDoc runnable examples 2021-03-18 10:05:58 +01:00
bitmanip.d Merge pull request #7799 from berni44/issue_21634 2021-02-23 04:02:37 +08:00
compiler.d
complex.d std.complex: Use core.math intrinsics instead of std.math wrappers 2021-03-02 00:06:47 +01:00
concurrency.d Fix issue 21663 - std.concurrency.receiveOnly doesn't work with tuples 2021-03-01 19:24:24 +01:00
conv.d Throughout Phobos use core.math intrinsics instead of std.math wrappers 2021-03-02 07:09:08 +01:00
csv.d Fixes #21629 2021-02-12 12:01:27 +01:00
demangle.d
encoding.d Replace is(Unqual!T == Unqual!U) with is(immutable T == immutable U) for speed & memory usage 2020-08-03 15:07:32 +02:00
exception.d Remove deprecated std.exception : enforceEx. 2021-03-12 14:56:35 +01:00
file.d std.file: Use core.sys.darwin.mach.dyld module 2021-02-02 14:03:18 +01:00
functional.d Replace usages of std.functional.forward with core.lifetime.forward 2021-01-31 12:20:09 +01:00
getopt.d getopt: throw the correct exception on missing values 2021-03-05 03:06:14 +01:00
json.d Better wording & removed useless import 2020-12-03 19:42:10 +02:00
math.d Fix Issue 16200 - Faster pow implementation for integral exponents 2021-03-08 13:20:11 +01:00
mathspecial.d Throughout Phobos use core.math intrinsics instead of std.math wrappers 2021-03-02 07:09:08 +01:00
meta.d Fix issue 21088: move alias statement into staticMap mixin body. 2020-07-30 05:51:25 +02:00
mmfile.d We should not be promoting using GC.free casually. 2021-01-26 22:29:30 +01:00
numeric.d Throughout Phobos use core.math intrinsics instead of std.math wrappers 2021-03-02 07:09:08 +01:00
outbuffer.d Replaced version (unittest) with version (StdUnittest) to avoid unnecessary overhead when compiling with -unittest 2020-01-19 14:05:17 +02:00
package.d Add forgotten modules to std.package. 2021-03-12 07:21:39 +01:00
parallelism.d Remove a few uses of fully qualified names that rely on a DMD bug 2021-02-22 08:16:13 -03:00
path.d Fix a few places where opDollar could be an alias of length 2020-11-11 02:09:56 +01:00
process.d Implement missing OpenBSD ports in phobos 2021-02-01 18:46:54 +01:00
random.d Fix issue 21609 - LinearCongruentialEngine fails for m = 0 2021-02-05 02:37:24 +01:00
signals.d Replace 'Issue XXX' with Bugzilla links 2020-04-13 16:28:09 +09:00
socket.d Change Socket constructor to accept its parameter by const scope 2020-08-16 11:12:40 +02:00
stdint.d
stdio.d fix issue 21592 - two stack traces if high surrogate is printed 2021-03-03 13:46:29 +01:00
string.d fix test 2021-02-22 12:06:18 +01:00
sumtype.d Fix Issue 21708 - SumType.opEquals gives confusing error message 2021-03-13 23:28:48 +01:00
system.d Adds std.system.OS.unknown 2021-02-16 18:55:18 +07:00
traits.d Simplify std.traits.isFunctionPointer & std.traits.isDelegate 2021-03-10 00:20:41 +01:00
typecons.d Fix Issue 21705 - Nullable!T.opEquals fails for T with non-const opEquals overload 2021-03-15 12:30:01 +01:00
typetuple.d typetuple: 100% code coverage 2019-09-29 20:13:44 +02:00
uri.d std.uri: Add unittests for 100% code coverage. (#7220) 2019-10-17 09:22:45 +02:00
utf.d Fix Issue 21559 - Speed up walkLength for narrow strings 2021-01-19 10:49:21 -05:00
uuid.d Fix Issue 21201 - let std.uuid.parseUUID accept input ranges whose elements are char or wchar, not just dchar 2020-08-27 16:47:53 +02:00
variant.d Add sumtype to Phobos (#7702) 2021-03-05 12:41:34 +01:00
xml.d Remove documentation from std.xml due to deprecation in midterm. 2021-01-28 16:23:10 +01:00
zip.d Replace 'Issue XXX' with Bugzilla links 2020-04-13 16:28:09 +09:00
zlib.d Replace 'Issue XXX' with Bugzilla links 2020-04-13 16:28:09 +09:00