Commit graph

409 commits

Author SHA1 Message Date
k-hara
156bf68ef7 fix Issue 14980 - getAddressInfo(null) broken 2015-08-31 21:57:01 +09:00
Johan Engelen
0bd234bfe2 Provide MAXGAMMA, MAXLOG, and MINLOG for 64-bit reals.
Inside gammaStirling(), fix a call to pow() that would overflow for 64-bit reals.
2015-07-20 22:42:04 +02:00
Walter Bright
feb88b8148 std.internal.math.biguintcore: minor improvements 2015-07-02 18:41:28 -07:00
H. S. Teoh
47dfc369b0 Merge pull request #3240 from e10s/issue14503
Fix BigInt.toString with "%x"
2015-06-30 10:56:00 -07:00
Iain Buclaw
c3b05edcc5 Merge pull request #3309 from ibuclaw/fix_pr3020
Relax compile-time assertion in gammafunction to runtime
2015-06-30 18:09:04 +02:00
Iain Buclaw
65b103fc08 Relax compile-time assertion in gammafunction to runtime 2015-06-25 11:23:51 +02:00
Walter Bright
4f338368ea std.internal.cstring - @nogc must be inferred 2015-06-18 21:43:57 -07:00
Walter Bright
681964cfbf get tempCString to infer @trusted 2015-06-17 10:16:33 -07:00
Walter Bright
ed1a063e68 Range-ify std.internal.cstring 2nd try 2015-06-16 18:02:00 -07:00
Hara Kenji
46794c7695 Revert "Range-ify std.internal.cstring" 2015-06-13 16:52:55 +09:00
Walter Bright
4d9a304d8c Range-ify std.internal.cstring 2015-06-12 00:39:34 -07:00
Rainer Schuetze
adab223837 remove trailing whitespace, detab, tolf 2015-05-31 11:24:01 +02:00
Daniel Murphy
f98468d0a9 Merge pull request #3339 from burner/internal_windows_advapi_alias_syntax_update
internal_windows_advapi: alias syntax update
2015-05-28 19:12:15 -06:00
Robert burner Schadek
5ec5740ff3 alias fix 2015-05-28 19:50:00 +02:00
Martin
468a7ed080 std.internal.math.gammafunction: loosen some tests for 64-bit reals. 2015-05-21 23:09:55 +02:00
Clement Courbet
8558b22cfe Remove a bad cast (issue 3841). Functional noop. 2015-05-13 20:20:03 +02:00
Walter Bright
d9a9826e55 Revert "Introducing std.meta package" 2015-05-06 14:36:45 -07:00
Dicebot
7970fcc748 Don't use fqn for any/all
In most cases it resolves unambiguosly
2015-05-05 22:22:11 +03:00
Dicebot
1c9ae027ef Rename old std.typetuple symbols inside Phobos
staticIndexOf -> indexOf
allSatisfy -> all
anySatisfy -> any
staticMap -> Map
2015-05-05 22:22:11 +03:00
Dicebot
82f54a38d3 TypeTuple -> MetaList inside Phobos 2015-05-05 22:22:11 +03:00
Dicebot
73f773838d import std.typetuple -> import std.meta 2015-05-05 22:22:10 +03:00
e10s
9e0b10c9ae append letterCase param to toHexString 2015-04-30 00:23:59 +09:00
Dragos Carp
b170d93693 Fix some PHOBOSSRC broken links 2015-04-29 11:02:58 +02:00
k-hara
981bb7be7d Supplemental fix for issue 5770 2015-04-06 01:01:00 +09:00
Robert Schadek
062d415cd4 Merge pull request #3020 from 9il/lmdi
Inverse of the Log Minus Digamma function
2015-03-05 12:55:20 +01:00
Ilya Yaroshenko
9b86eebed5 Inverse of the Log Minus Digamma function
fix test

fix unittest

add crosreferences
2015-03-05 13:48:29 +03:00
Denis Shelomovskij
7820bf3310 Add (mostly @nogc) attributes to bigint module.
Also add comment to `internal.math.biguintcore.fromDecimalString`.
2015-02-27 18:31:05 +03:00
k-hara
e7b3d834d7 detab and remove trailing whitespaces 2015-02-10 00:56:40 +09:00
Andrei Alexandrescu
677edcf220 Merge pull request #2965 from JakobOvrum/bigint_nogc
Add @nogc attribute to several BigInt accessor functions
2015-02-07 08:21:44 -08:00
Jakob Ovrum
6a8bcb32e9 Add @nogc attribute to several BigInt accessor functions 2015-02-07 04:03:36 +09:00
Robert Schadek
581f6d029a Merge pull request #2957 from 9il/logmdigamma
Log Minus Digamma function
2015-02-04 22:59:19 +01:00
Ilya Yaroshenko
f201989054 add refs for logmdigamma, digamma 2015-02-04 23:06:00 +03:00
Ilya Yaroshenko
e7bf1cdfa2 Log Minus Digamma function
logmdigamma: fix comprasion

move declarations
2015-02-04 20:51:11 +03:00
Walter Bright
dc302d26a4 DIP25: make phobos work with it 2015-01-30 12:02:48 -08:00
Ilya Yaroshenko
2c744b54e1 std.range: constraints => primitives
See discussion and voting in #2661
2014-11-23 20:05:20 +03:00
David Nadlinger
7e80e67630 Merge pull request #2728 from 9il/typecons
std.typecons: remake toString to template, clean module imports
2014-11-20 22:11:54 +01:00
Ilya Yaroshenko
af02101ab9 std.typecons: remake toString to template, clean module imports
update datetime unittests
2014-11-20 23:08:33 +03:00
Lars T. Kyllingstad
96583fe46b isNaN() is not a property
...so it shouldn't be used as one.
2014-11-20 20:22:00 +01:00
Ilya Yaroshenko
66267de81f dummy ranges module
rm

rename & add scope imports

update scope imports

std.algorithm: clean imports

update scope imports

update global imports

update *.mak

ditto

formatting

fix typo

fix scope import std.uni

update windows  *.mak

add import to unittests

tabs fix

fix unittest

fix indentation
2014-11-15 03:07:10 +03:00
H. S. Teoh
c3fb3f42cd Merge pull request #2694 from 9il/cstring
std.internal.cstring: clean imports
2014-11-12 20:50:34 -08:00
Ilya Yaroshenko
488e62abc6 scope buffer: clean imports 2014-11-13 03:04:44 +03:00
Ilya Yaroshenko
bd8f9fb98a std.internal.cstring: clean imports 2014-11-13 02:58:01 +03:00
Ilya Yaroshenko
3ddf9133f3 remove unused import in gammafunction.d 2014-11-11 18:47:27 +03:00
sinkuu
deb82feaa2 Add @nogc attribute 2014-11-09 23:00:24 +09:00
Михаил Страшун
21ef7c2ced Merge pull request #2612 from burner/bigint_safe_one
BigInt @safe https://issues.dlang.org/show_bug.cgi?id=13607
2014-11-02 15:59:44 +01:00
Robert burner Schadek
5b38506d47 BigInt @safe
some more

some more

some cleanup

some more

hope I got them all

another one

another one

some more

review fix and some additional style changes

some more quickfur
2014-10-31 10:27:20 +01:00
k-hara
ae5c00b114 Annotate asm statements with attributes 2014-10-29 22:00:56 +09:00
k-hara
4f75fa8029 Return bare asm-instructions from helper functions 2014-10-29 21:45:07 +09:00
Martin Nowak
c855945f46 Merge pull request #2614 from Geod24/fix-license-doc
[DDOC] Usage of WEB macro for License everywhere
2014-10-17 00:16:49 +02:00
Geod24
0fb95b8c27 Usage of WEB macro for License everywhere 2014-10-15 11:30:42 +02:00