-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating with upstream #1
Commits on Nov 14, 2018
-
Configuration menu - View commit details
-
Copy full SHA for ffc14e1 - Browse repository at this point
Copy the full SHA ffc14e1View commit details
Commits on Feb 23, 2019
-
Fix Issue 19226 - std.typecons.Nullable(T, T nullValue) doesn't fully…
… handle non-self-equal nullValue
Configuration menu - View commit details
-
Copy full SHA for aba8660 - Browse repository at this point
Copy the full SHA aba8660View commit details
Commits on Apr 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for fb82c21 - Browse repository at this point
Copy the full SHA fb82c21View commit details -
Merge pull request #6980 from jpf91/mingw_minimal
[GDC] GCC9 last-minute fix: MinGW changes to get phobos to build merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for daf0e4f - Browse repository at this point
Copy the full SHA daf0e4fView commit details
Commits on Apr 28, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 03ce27d - Browse repository at this point
Copy the full SHA 03ce27dView commit details -
Merge pull request #6982 from ibuclaw/s390-multilib
[S390] std.math: Use IBMZ_Any for SystemZ bindings merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 269749d - Browse repository at this point
Copy the full SHA 269749dView commit details -
fix Issue 19777 - SortedRange.opSlice should infer safety
- unittests did fail with DIP1000 due to missing return scope inference in chained range, thus leading to a scope violation which prevented `@safe` inference - fixed unittests by adding return scope to chain.Result - would still fail under dip1000 with other ranges that miss return scope on their opSlice - should not have any effect on non-DIP1000 usage
Configuration menu - View commit details
-
Copy full SHA for 8430584 - Browse repository at this point
Copy the full SHA 8430584View commit details -
Merge pull request #6984 from MartinNowak/fix19777
fix Issue 19777 - SortedRange.opSlice should infer safety
Configuration menu - View commit details
-
Copy full SHA for 9026449 - Browse repository at this point
Copy the full SHA 9026449View commit details -
Fix Issue 19836 - Excessive probability of UUID collisions in std.uui…
…d.randomUUID On 64-bit architectures use 64 bits of entropy to initialize thread-local `rndGen`. The motivation for this change is std.uuid defaults to using `rndGen` to generate UUIDs. If every `rndGen` starts in one of 2^^32 states then if 77000 independent programs each generate a single UUID there is a 50% chance that at least two of them generate the same initial UUID (and all subsequent UUIDs would be identical as well). Not just Phobos but also C++ boost::uuids::random_generator defaults to generating UUIDs with a Mersenne Twister initialized from a 32-bit seed, exacerbating the collision problem further. If instead there are 2^^64 possible initial states of `rndGen` there can be over 5 billion independent `rndGen`s before there is a 50% chance of two having identical initial states. This change is limited to 64-bit architectures to avoid a measurable performance decrease, because many programs are not generating UUIDs.
Configuration menu - View commit details
-
Copy full SHA for 5d0f1d3 - Browse repository at this point
Copy the full SHA 5d0f1d3View commit details
Commits on Apr 29, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 07c3914 - Browse repository at this point
Copy the full SHA 07c3914View commit details -
Merge pull request #6985 from n8sh/issue-19836
Fix Issue 19836 - Excessive probability of UUID collisions in std.uuid.randomUUID merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 595a290 - Browse repository at this point
Copy the full SHA 595a290View commit details -
Configuration menu - View commit details
-
Copy full SHA for 712545c - Browse repository at this point
Copy the full SHA 712545cView commit details
Commits on May 1, 2019
-
Merge pull request #6986 from MartinNowak/merge_stable
Merge remote-tracking branch 'upstream/stable' into merge_stable
Configuration menu - View commit details
-
Copy full SHA for 68d62e1 - Browse repository at this point
Copy the full SHA 68d62e1View commit details -
Merge pull request #6989 from ibuclaw/mmfile-mman
std.mmfile: MAP_ANON is only defined in core.sys.posix.sys.mman merged-on-behalf-of: Petar Kirov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 127b9a0 - Browse repository at this point
Copy the full SHA 127b9a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for d410281 - Browse repository at this point
Copy the full SHA d410281View commit details
Commits on May 2, 2019
-
Merge pull request #6988 from dlang/revert-6960-searchingAllAnyFewerT…
…emplates Revert "Decrease template instantiation in std.algorithm.searching : all & any" merged-on-behalf-of: Petar Kirov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7a4ac98 - Browse repository at this point
Copy the full SHA 7a4ac98View commit details
Commits on May 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c334d37 - Browse repository at this point
Copy the full SHA c334d37View commit details -
Merge pull request #6990 from n8sh/issue-6657
Fix Issue 6657 - dotProduct overload for small fixed size arrays merged-on-behalf-of: Nathan Sashihara <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 36332b8 - Browse repository at this point
Copy the full SHA 36332b8View commit details
Commits on May 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for cc5f89f - Browse repository at this point
Copy the full SHA cc5f89fView commit details
Commits on May 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c75d29a - Browse repository at this point
Copy the full SHA c75d29aView commit details -
Configuration menu - View commit details
-
Copy full SHA for fc382d9 - Browse repository at this point
Copy the full SHA fc382d9View commit details -
Merge pull request #6992 from MartinNowak/merge_stable
Merge remote-tracking branch 'upstream/stable' into merge_stable merged-on-behalf-of: Petar Kirov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e623fc1 - Browse repository at this point
Copy the full SHA e623fc1View commit details
Commits on May 6, 2019
-
Issue 19836 followup - also fix on 32 bit machines
Changed the private enhanced seeding method for `rndGen` to something that is fast on both 64 bit and 32 bit machines so can be enabled regardless of architecture. When compiled with LDC it is about 1.35x the speed of public `Mt19937.seed(uint)`.
Configuration menu - View commit details
-
Copy full SHA for 8d49976 - Browse repository at this point
Copy the full SHA 8d49976View commit details
Commits on May 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e2ab794 - Browse repository at this point
Copy the full SHA e2ab794View commit details -
Merge pull request #6693 from n8sh/issue-19226
Fix Issue 19226 - std.typecons.Nullable(T, T nullValue) doesn't fully handle non-self-equal nullValue
Configuration menu - View commit details
-
Copy full SHA for cbc4afc - Browse repository at this point
Copy the full SHA cbc4afcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 53bdd83 - Browse repository at this point
Copy the full SHA 53bdd83View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b357e2 - Browse repository at this point
Copy the full SHA 7b357e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c56956 - Browse repository at this point
Copy the full SHA 2c56956View commit details -
Configuration menu - View commit details
-
Copy full SHA for f246985 - Browse repository at this point
Copy the full SHA f246985View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a05c1d - Browse repository at this point
Copy the full SHA 9a05c1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for c3ebee9 - Browse repository at this point
Copy the full SHA c3ebee9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 13fcd0c - Browse repository at this point
Copy the full SHA 13fcd0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0998483 - Browse repository at this point
Copy the full SHA 0998483View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6140c01 - Browse repository at this point
Copy the full SHA 6140c01View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4bfcd20 - Browse repository at this point
Copy the full SHA 4bfcd20View commit details -
Merge pull request #6746 from RazvanN7/Sanitize_numeric
Move std.numeric.CustomFloat.ToBinary to top-level merged-on-behalf-of: Sebastian Wilzbach <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5a3f52c - Browse repository at this point
Copy the full SHA 5a3f52cView commit details -
Merge pull request #5630 from John-Colvin/improve_aliasSeq
Implement aliasSeqOf for all iterables merged-on-behalf-of: unknown
Configuration menu - View commit details
-
Copy full SHA for b83488e - Browse repository at this point
Copy the full SHA b83488eView commit details -
Merge pull request #6570 from WalterBright/primitives-scope
primitives: add scope merged-on-behalf-of: Sebastian Wilzbach <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1f70299 - Browse repository at this point
Copy the full SHA 1f70299View commit details -
Merge pull request #6902 from thewilsonator/thewilsonator-patch-1
Issue 3525 was fixed merged-on-behalf-of: Sebastian Wilzbach <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 39d3816 - Browse repository at this point
Copy the full SHA 39d3816View commit details
Commits on May 10, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 32346c8 - Browse repository at this point
Copy the full SHA 32346c8View commit details
Commits on May 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f03f7ac - Browse repository at this point
Copy the full SHA f03f7acView commit details -
Configuration menu - View commit details
-
Copy full SHA for d33c1eb - Browse repository at this point
Copy the full SHA d33c1ebView commit details -
Improved error message when an assocArray can't be created
Marco de Wild committedMay 11, 2019 Configuration menu - View commit details
-
Copy full SHA for b4756c2 - Browse repository at this point
Copy the full SHA b4756c2View commit details -
Merge pull request #7000 from FeepingCreature/fix/issue-9029-fixes
Fix issues arising from the DMD 9029 fix (types match to alias) merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d57be46 - Browse repository at this point
Copy the full SHA d57be46View commit details -
Merge pull request #7002 from Zevenberge/error-message-assoc-array
Improved error message when an assocArray can't be created merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 89c37ea - Browse repository at this point
Copy the full SHA 89c37eaView commit details
Commits on May 14, 2019
-
Explicitly stated that the enum name can be retrieved with __traits
Marco de Wild committedMay 14, 2019 Configuration menu - View commit details
-
Copy full SHA for db843f1 - Browse repository at this point
Copy the full SHA db843f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4851827 - Browse repository at this point
Copy the full SHA 4851827View commit details -
Merge pull request #7003 from Zevenberge/enummembers-doc
Added description to EnumMember documentation to get name of value merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 507c6ff - Browse repository at this point
Copy the full SHA 507c6ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b35379 - Browse repository at this point
Copy the full SHA 4b35379View commit details
Commits on May 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 03f19cf - Browse repository at this point
Copy the full SHA 03f19cfView commit details -
Merge pull request #7004 from kubo39/remove-unreachable-statement
regex/internal/parser.d: remove unreachable statement merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c9161d7 - Browse repository at this point
Copy the full SHA c9161d7View commit details -
Merge pull request #6931 from wilzbach/dip1000-3
Build entire Phobos with -preview=dip1000
Configuration menu - View commit details
-
Copy full SHA for 24209a6 - Browse repository at this point
Copy the full SHA 24209a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for b77691c - Browse repository at this point
Copy the full SHA b77691cView commit details -
Merge pull request #7005 from wilzbach/phobos-dip1000-changelog
Add changelog entry for -dip1000 merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9e8086a - Browse repository at this point
Copy the full SHA 9e8086aView commit details
Commits on May 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6af0f68 - Browse repository at this point
Copy the full SHA 6af0f68View commit details -
Configuration menu - View commit details
-
Copy full SHA for 778e307 - Browse repository at this point
Copy the full SHA 778e307View commit details
Commits on May 17, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bbd0b3e - Browse repository at this point
Copy the full SHA bbd0b3eView commit details -
Merge pull request #7011 from thewilsonator/mallocator-unittest
Fix broken unittest merged-on-behalf-of: Sebastian Wilzbach <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 56438a4 - Browse repository at this point
Copy the full SHA 56438a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for c36d609 - Browse repository at this point
Copy the full SHA c36d609View commit details -
Ernesto Castellotti committed
May 17, 2019 Configuration menu - View commit details
-
Copy full SHA for a724c9a - Browse repository at this point
Copy the full SHA a724c9aView commit details -
Merge pull request #6999 from AurelC2G/13965-schwartzSort-overload
Fixed Issue 13965 - More handy schwartzSort merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cba72d9 - Browse repository at this point
Copy the full SHA cba72d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4a38e8 - Browse repository at this point
Copy the full SHA e4a38e8View commit details
Commits on May 18, 2019
-
Remove unnecessary check-and-initialize in std.alorithm.internal.rnds…
…tuff The check-and-initialize pattern dates back to when `rnd` was seeded with `unpredictableSeed`. With a fixed seed that's unnecessary.
Configuration menu - View commit details
-
Copy full SHA for d2be197 - Browse repository at this point
Copy the full SHA d2be197View commit details -
Merge pull request #6994 from n8sh/issue-19836-pt2
Issue 19836 followup - also fix on 32 bit machines merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6f5cce1 - Browse repository at this point
Copy the full SHA 6f5cce1View commit details -
Merge pull request #7013 from n8sh/rndGenUnusedImports
Remove unused imports from std.random.rndGen
Configuration menu - View commit details
-
Copy full SHA for 5e72cf5 - Browse repository at this point
Copy the full SHA 5e72cf5View commit details -
Merge pull request #7014 from n8sh/rndstuffRndCleanup
Remove unnecessary check-and-initialize in std.alorithm.internal.rndstuff merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for df741a9 - Browse repository at this point
Copy the full SHA df741a9View commit details
Commits on May 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ae16dad - Browse repository at this point
Copy the full SHA ae16dadView commit details -
Configuration menu - View commit details
-
Copy full SHA for 11ebb64 - Browse repository at this point
Copy the full SHA 11ebb64View commit details -
Merge pull request #7015 from WalterBright/isLvalue
add isLvalue() to prepare for rvalue ref merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c00fb54 - Browse repository at this point
Copy the full SHA c00fb54View commit details -
fix issue 19883 - Cyclic constructor call for BigInt(dstring)
Basile Burg committedMay 19, 2019 Configuration menu - View commit details
-
Copy full SHA for 7bf6a6d - Browse repository at this point
Copy the full SHA 7bf6a6dView commit details -
Merge pull request #7016 from Flying-Toast/master
deprecate deprecated stuff in std.json merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ad62a82 - Browse repository at this point
Copy the full SHA ad62a82View commit details -
Merge pull request #7017 from Basile-z/issue-19883
fix issue 19883 - Cyclic constructor call for BigInt(dstring) merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6742e9f - Browse repository at this point
Copy the full SHA 6742e9fView commit details
Commits on May 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 8d404f9 - Browse repository at this point
Copy the full SHA 8d404f9View commit details -
Merge pull request #7018 from WalterBright/isLvalue2
hasLvalueElements(): use overloading to detect lvalue merged-on-behalf-of: Walter Bright <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6cc5283 - Browse repository at this point
Copy the full SHA 6cc5283View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf2ca66 - Browse repository at this point
Copy the full SHA cf2ca66View commit details
Commits on May 21, 2019
-
Merge pull request #7020 from WalterBright/typecons-rvalue
fix rvalue test for Final merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e6456f4 - Browse repository at this point
Copy the full SHA e6456f4View commit details -
* Faster isNaN test
Configuration menu - View commit details
-
Copy full SHA for b240c86 - Browse repository at this point
Copy the full SHA b240c86View commit details
Commits on May 22, 2019
-
Change version(unittest) code to use accessors to wrap the static
initializers. This prevents the compiler from executing the initializers using CTFE during importing, when using unittest.
Configuration menu - View commit details
-
Copy full SHA for 96f98ff - Browse repository at this point
Copy the full SHA 96f98ffView commit details -
Jonathan Marler committed
May 22, 2019 Configuration menu - View commit details
-
Copy full SHA for 8337ed2 - Browse repository at this point
Copy the full SHA 8337ed2View commit details
Commits on May 23, 2019
-
Fix Issue 19892 - Add CTFE support for std.bitmanip: nativeToBigEndia…
…n, bigEndianToNative, littleEndianToNative, nativeToLittleEndian
Configuration menu - View commit details
-
Copy full SHA for 3578675 - Browse repository at this point
Copy the full SHA 3578675View commit details -
Merge pull request #7022 from schveiguy/fixdtut
Change version(unittest) code to use accessors to wrap the static initializers merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 555be2f - Browse repository at this point
Copy the full SHA 555be2fView commit details -
Merge pull request #7023 from n8sh/issue-19892
Fix Issue 19892 - Add CTFE support for std.bitmanip: nativeToBigEndian, bigEndianToNative, littleEndianToNative, nativeToLittleEndian merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4ca9243 - Browse repository at this point
Copy the full SHA 4ca9243View commit details -
Configuration menu - View commit details
-
Copy full SHA for 516432d - Browse repository at this point
Copy the full SHA 516432dView commit details -
Merge pull request #6976 from thewilsonator/thewilsonator-patch-2
Fix issue 13471: can't use crc at CTFE merged-on-behalf-of: Nathan Sashihara <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 080af82 - Browse repository at this point
Copy the full SHA 080af82View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9092826 - Browse repository at this point
Copy the full SHA 9092826View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12c5e1e - Browse repository at this point
Copy the full SHA 12c5e1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bc3946 - Browse repository at this point
Copy the full SHA 8bc3946View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1386fa2 - Browse repository at this point
Copy the full SHA 1386fa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 66991b4 - Browse repository at this point
Copy the full SHA 66991b4View commit details -
Merge pull request #7024 from wilzbach/import-selective
Use selective top-level module imports in std.algorithm merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 432556e - Browse repository at this point
Copy the full SHA 432556eView commit details -
Merge pull request #7029 from wilzbach/import-selective3
Use selective top-level module imports in std.{typecons,uni,utf} merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c56f686 - Browse repository at this point
Copy the full SHA c56f686View commit details -
Configuration menu - View commit details
-
Copy full SHA for b56db9a - Browse repository at this point
Copy the full SHA b56db9aView commit details -
Merge pull request #7027 from wilzbach/import-selective5
Use selective top-level module imports in std.{path,range,regex} merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dba2f10 - Browse repository at this point
Copy the full SHA dba2f10View commit details -
Merge pull request #7026 from wilzbach/import-selective4
Use selective top-level module imports in std.{functional,getopt,math,net,outbuffer} merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7cdd92f - Browse repository at this point
Copy the full SHA 7cdd92fView commit details -
Merge pull request #7025 from wilzbach/import-selective2
Use selective top-level module imports in std.{base64,csv,datetime} merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7972cca - Browse repository at this point
Copy the full SHA 7972ccaView commit details
Commits on May 24, 2019
-
Fix Issue 19513 - Use sched_getaffinity(2) to get the number of CPU
cores if available Currently std.parallelism.totalCPUs is implemented by sysconf(_SC_NPROCESSORS_ONLN) on Posix platoform. However, on GNU/Linux, usable number of processors may be restricted if a process runs in container. In case it's better to use sched_getaffinity(2). ref: http://man7.org/linux/man-pages/man1/nproc.1.html
Configuration menu - View commit details
-
Copy full SHA for d17f2eb - Browse repository at this point
Copy the full SHA d17f2ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d6e35c - Browse repository at this point
Copy the full SHA 1d6e35cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3be1b14 - Browse repository at this point
Copy the full SHA 3be1b14View commit details -
const
ify scalar arguments in std.bitmanip to reduce IFTI template b……loat Fixes Issue 19899 - std.bitmanip.bitsSet should accept const arguments This also makes `swapEndian` not propagate `const` to its return value which is arguably an improvement (see #6682 (comment)).
Configuration menu - View commit details
-
Copy full SHA for 0c376b4 - Browse repository at this point
Copy the full SHA 0c376b4View commit details -
Merge pull request #7033 from n8sh/bitmanipConstIFTI
`const`ify scalar arguments in std.bitmanip to reduce IFTI template bloat
Configuration menu - View commit details
-
Copy full SHA for 708ce11 - Browse repository at this point
Copy the full SHA 708ce11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09b847e - Browse repository at this point
Copy the full SHA 09b847eView commit details -
Merge pull request #7032 from n8sh/bitmanipConsolidateImpl
Pare down std.bitmanip's 13 private impl functions to 4 merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2b94eb8 - Browse repository at this point
Copy the full SHA 2b94eb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for e962cc7 - Browse repository at this point
Copy the full SHA e962cc7View commit details -
assert messages for std.getopt
Robert Schadek committedMay 24, 2019 Configuration menu - View commit details
-
Copy full SHA for 3fbe023 - Browse repository at this point
Copy the full SHA 3fbe023View commit details -
assert messages for std.string
starting to work on dlang/phobos/project/2
Robert Schadek committedMay 24, 2019 Configuration menu - View commit details
-
Copy full SHA for f3244d5 - Browse repository at this point
Copy the full SHA f3244d5View commit details -
more work on starting to work on dlang/phobos/project/2
Robert Schadek committedMay 24, 2019 Configuration menu - View commit details
-
Copy full SHA for 72d4cc7 - Browse repository at this point
Copy the full SHA 72d4cc7View commit details -
Merge pull request #7037 from burner/std.getopt_assert_messages
assert messages for std.getopt merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 83a3f9e - Browse repository at this point
Copy the full SHA 83a3f9eView commit details -
Merge pull request #7028 from wilzbach/import-selective6
Use selective top-level module imports in std.{stdio,string} merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f7bc86d - Browse repository at this point
Copy the full SHA f7bc86dView commit details -
Merge pull request #7031 from n8sh/bitmanipPopcnt
Use core.bitop.popcnt in std.bitmanip.countBitsSet merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 64eac95 - Browse repository at this point
Copy the full SHA 64eac95View commit details
Commits on May 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 40ba89b - Browse repository at this point
Copy the full SHA 40ba89bView commit details -
Merge pull request #7039 from Flying-Toast/master
Add messages to some asserts in std/socket.d merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a420745 - Browse repository at this point
Copy the full SHA a420745View commit details -
brk support has been removed from DragonFlyBSD
sbrk has been declared deprecated mmap() is suggested as a replacement for sbrk()
Diederik de Groot committedMay 25, 2019 Configuration menu - View commit details
-
Copy full SHA for 859dc49 - Browse repository at this point
Copy the full SHA 859dc49View commit details
Commits on May 26, 2019
-
Merge pull request #7021 from marler8997/explicitLibraries
Explicitly link to pthread merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dd0d622 - Browse repository at this point
Copy the full SHA dd0d622View commit details -
Merge pull request #7040 from dkgroot-dlang/region_brk_sbrk
(s)brk support has been removed from DragonFlyBSD
Configuration menu - View commit details
-
Copy full SHA for a460470 - Browse repository at this point
Copy the full SHA a460470View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a6dff4 - Browse repository at this point
Copy the full SHA 6a6dff4View commit details -
Merge pull request #7041 from SSoulaimane/fix17141
Ternary operator no longer promotes characters to integers merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ae78032 - Browse repository at this point
Copy the full SHA ae78032View commit details -
Configuration menu - View commit details
-
Copy full SHA for 55328d6 - Browse repository at this point
Copy the full SHA 55328d6View commit details
Commits on May 27, 2019
-
Merge pull request #7010 from dukc/controlChar
Added an enumerated type of ASCII control character.
Configuration menu - View commit details
-
Copy full SHA for 6d01400 - Browse repository at this point
Copy the full SHA 6d01400View commit details -
Configuration menu - View commit details
-
Copy full SHA for 332cf5b - Browse repository at this point
Copy the full SHA 332cf5bView commit details -
Merge pull request #7044 from dukc/controlChar
ControlChar: member name typos merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bc86b6e - Browse repository at this point
Copy the full SHA bc86b6eView commit details -
[TRIVIAL] Make link clickable and safe (#7045)
[TRIVIAL] Make link clickable and safe merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fb2b57b - Browse repository at this point
Copy the full SHA fb2b57bView commit details
Commits on May 28, 2019
-
Robert Schadek committed
May 28, 2019 Configuration menu - View commit details
-
Copy full SHA for 001bfe7 - Browse repository at this point
Copy the full SHA 001bfe7View commit details -
assert messages for std.format
Robert Schadek committedMay 28, 2019 Configuration menu - View commit details
-
Copy full SHA for e0299a4 - Browse repository at this point
Copy the full SHA e0299a4View commit details -
Merge pull request #7043 from SSoulaimane/fix17141_2
Ternary operator no longer promotes characters to integers [Part 2] merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 49cfec3 - Browse repository at this point
Copy the full SHA 49cfec3View commit details -
Merge pull request #7036 from burner/std.array_assert_messages
assert messages for std.array merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 16b1ad6 - Browse repository at this point
Copy the full SHA 16b1ad6View commit details -
Merge pull request #7030 from kubo39/issue-19513
Fix Issue 19513 - Use sched_getaffinity(2) to get the number of CPU cores if abailable merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0be618b - Browse repository at this point
Copy the full SHA 0be618bView commit details -
Merge pull request #6997 from ErnyTech/update-sqlite3
Update header of sqlite3 to 3.28.0 merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e472c81 - Browse repository at this point
Copy the full SHA e472c81View commit details
Commits on May 30, 2019
-
Merge pull request #7034 from burner/std.string_assert_messages
assert messages for std.string
Configuration menu - View commit details
-
Copy full SHA for d0281b7 - Browse repository at this point
Copy the full SHA d0281b7View commit details -
Merge pull request #7035 from shove70/patch-1
Add powmod() for BigInt operands.
Configuration menu - View commit details
-
Copy full SHA for c8ac791 - Browse repository at this point
Copy the full SHA c8ac791View commit details -
Merge pull request #7038 from burner/std.csv_assert_messages
std.csv assert messages merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 097fdc5 - Browse repository at this point
Copy the full SHA 097fdc5View commit details
Commits on May 31, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d25706d - Browse repository at this point
Copy the full SHA d25706dView commit details -
Merge pull request #7050 from marler8997/explicitLibs2
Explicitly link to math library merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 841541f - Browse repository at this point
Copy the full SHA 841541fView commit details
Commits on Jun 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 887294b - Browse repository at this point
Copy the full SHA 887294bView commit details -
Merge pull request #7056 from wilzbach/sponsorship
Add a sponsorship button merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4130727 - Browse repository at this point
Copy the full SHA 4130727View commit details
Commits on Jun 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3ca8d02 - Browse repository at this point
Copy the full SHA 3ca8d02View commit details -
Merge pull request #7059 from JinShil/fix_15110
std.process.forkChild cannot be inlined merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c5664d4 - Browse repository at this point
Copy the full SHA c5664d4View commit details
Commits on Jun 6, 2019
-
fix Issue 11061 - Variant of an array can be compared with another array
Fixes 11061
Marco de Wild committedJun 6, 2019 Configuration menu - View commit details
-
Copy full SHA for 613c0b1 - Browse repository at this point
Copy the full SHA 613c0b1View commit details -
Add
inout
to std.range.front to reduce template proliferationThe Win32_64 linker error that prevented this from being included in PR #6743 no longer occurs in CI.
Configuration menu - View commit details
-
Copy full SHA for e5bae1d - Browse repository at this point
Copy the full SHA e5bae1dView commit details
Commits on Jun 9, 2019
-
Merge pull request #7046 from burner/std.format_assert_messages
assert messages for std.format merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 315244e - Browse repository at this point
Copy the full SHA 315244eView commit details
Commits on Jun 10, 2019
-
Merge pull request #7061 from Zevenberge/11061-compare-static-and-dyn…
…amic-arrays Variant of an array can be compared with another array merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fdbcaed - Browse repository at this point
Copy the full SHA fdbcaedView commit details
Commits on Jun 11, 2019
-
function attributes go on the right of function aliases
FuncType is actually `@system` because of this, for some reason it is still `pure` and `nothrow`.
Configuration menu - View commit details
-
Copy full SHA for b1413e3 - Browse repository at this point
Copy the full SHA b1413e3View commit details -
Merge pull request #7064 from thewilsonator/thewilsonator-patch-3
function attributes go on the right of function aliases
Configuration menu - View commit details
-
Copy full SHA for 2825089 - Browse repository at this point
Copy the full SHA 2825089View commit details -
[docs][std.range.primitives] Add links to array range primitives
It's important to mention this, particularly so the user notices the auto-decoding overloads.
Configuration menu - View commit details
-
Copy full SHA for 249853b - Browse repository at this point
Copy the full SHA 249853bView commit details
Commits on Jun 12, 2019
-
Merge pull request #7066 from ntrel/patch-3
[docs][std.range.primitives] Add links to array range primitives merged-on-behalf-of: Nicholas Wilson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3cdff21 - Browse repository at this point
Copy the full SHA 3cdff21View commit details -
Merge pull request #7057 from n8sh/inout-front
Add `inout` to range.front to reduce template proliferation merged-on-behalf-of: Nathan Sashihara <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5a4918e - Browse repository at this point
Copy the full SHA 5a4918eView commit details