summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-29Add fast memory copy function for x86-64Eugen Wissner
2017-07-28Add internal routing to convert a number to stringEugen Wissner
Add internal routing to write a number to a char buffer.
2017-07-27format.conv: Convert string to a booleanEugen Wissner
2017-07-26format.conv: Add conversion from bool to StringEugen Wissner
2017-07-25memory: Fix parameter name in the documentationEugen Wissner
Size parameter for "make" was renamed into n, but the function description wasn't fixed: size => n This commit also removes some redundant variables in "make".
2017-07-22container.Set: Reduce duplicated code, add testsEugen Wissner
2017-07-21Add dmd 2.075.0 supportv0.7.1Eugen Wissner
2017-07-19Fix assigning a ByCodeUnit to the String sliceEugen Wissner
std.algorithm.mutation copy is unable to copy a char range into a char array slice.
2017-07-19Fix CONTRIBUTING.md typosEugen Wissner
2017-07-18If scheme is invalid, parse everything as pathEugen Wissner
2017-07-17Fix #254Eugen Wissner
network.url Range violation. Add a check after parsing "scheme://" whether only the scheme is available.
2017-07-16Add some style guidelines for contributorsEugen Wissner
2017-07-15Fix #259Eugen Wissner
Get rid of std.experimental.
2017-07-14Add style checkingEugen Wissner
A lot of tests are disabled. They should be enabled successively.
2017-07-13Fix #246Eugen Wissner
Make allocators pure. * Methods allocating/deallocating memory are pure. * Allocator.instance is pure (once initialized, it always returns the same instance). * defaultAllocator getter property is pure (should be set at the beginning, and always return the same instance after that).
2017-07-12Fix mmap flags on linuxEugen Wissner
2017-07-12Make MmapPool allocations pureEugen Wissner
2017-07-11Fix #245Eugen Wissner
* Remove postcondition for functions calculating alignment * Put MmapPool invariant into version (none) block * Check that alignment doesn't overflow
2017-07-09Fix inserting 3 byte wchar into StringEugen Wissner
* Fix inserting 3 byte wchar into String * Improve documentation
2017-07-08Ignore tanya-test-library.core (FreeBSD)Eugen Wissner
2017-07-08Finish DList implementation. Fixes #209Eugen Wissner
* removeBack * insertAfter * Diverse fixes of insertion logic * Internal moveFront and moveBack functions * Internal makeList function
2017-07-08Add missing methods to DList. Issue #209Eugen Wissner
2017-07-08Fix #260Eugen Wissner
DList invariant fails.
2017-07-06Fix 232Eugen Wissner
2017-07-05Refer to net instead of network package in READMEEugen Wissner
2017-07-04Fix #232 for ArrayEugen Wissner
Because const is transitive, if we create a range as Range!(const E) there is no way to get the original type from inside of the range. So if E is int*, the original type of const(E) could be const(int)* or int*. Unqual!(const(int*)) returns const(int)*. So pass the whole container as template parameter. It is a breaking change but since we have Range and ConstRange aliases now, the usage should be fine.
2017-06-30Remove previously deprecated modulesEugen Wissner
* tanya.network.uri * tanya.network.inet * tanya.memory.types
2017-06-29Fix typo in README, add CONTRIBUTING.md linkv0.7.0Eugene Wissner
2017-06-28Fix DList.opAssign not changing tailEugen Wissner
2017-06-27Move network.url to net.uriEugen Wissner
2017-06-25Fix generating async docs for different OSEugen Wissner
2017-06-24Add module documentation. Fix #248Eugen Wissner
2017-06-24Fix #247Eugen Wissner
Assigning RefCounted to RefCounted fails at compile time. https://issues.caraus.io/issues/247
2017-06-24Add Unique.isInitialized and Unique.releaseEugen Wissner
2017-06-23Add support for enums to format.conv.to. Fix #240Eugen Wissner
2017-06-22toStringz returns a pointerEugen Wissner
2017-06-22Add "Basic usage" section. Fix #238Eugen Wissner
2017-06-21Finish CONTRIBUTING.mdEugen Wissner
2017-06-20format.conv.to: Convert to/from booleanEugen Wissner
2017-06-19Add contributing informationEugen Wissner
Only the section with ways to get involved.
2017-06-19Add No Code of ConductEugen Wissner
2017-06-18Add tanya.format.conv.toEugen Wissner
Function that converts between different types. This first commit adds only conversion between integral types.
2017-06-17Mark Entropy class as nogc, add linux 64bit unittestEugene Wissner
2017-06-16Add os package#Eugen Wissner
2017-06-15Revert "Add unittest for Linux random generator"Eugen Wissner
Doesn't work on 32-bit. This reverts commit c62dc4063e162cb5d05cad2a1359ebce7c4432fe.
2017-06-15Add unittest for Linux random generatorEugen Wissner
2017-06-15Fix one Mallocator testEugen Wissner
Test that if the reallocation fails, the pointer doesn't change.
2017-06-15Replace in and immutable with const in allocatorsEugen Wissner
2017-06-14Make Unique.get and RefCounted.get return inoutEugen Wissner
Also revert the renaming of Scoped to Unique. And rename the whole module to memory.smartref.
2017-06-13Test x86-64 on WindowsEugen Wissner