summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-19Fix parameter count for docs in container.stringv0.5.0Eugen Wissner
2017-05-16Implement DList.insertBackEugen Wissner
2017-05-16Rename Vector to ArrayEugen Wissner
For consistency with Phobos.
2017-05-15Add new branch, add DList to package descriptionEugen Wissner
2017-05-15Remove crypto.mac for nowEugen Wissner
It wasn't released yet and needs some work.
2017-05-15Add doubly-linked listEugen Wissner
DList is an adjusted copy of SList. Missing: * insertBack * insertAfter * removeBack
2017-05-14Rename String.get into toString. Add String.toStringzEugen Wissner
2017-05-13Add Payload template for memory.typesEugen Wissner
2017-05-13Add memory.types.ScopedEugen Wissner
2017-05-12Fix unittest text for stringsEugen Wissner
2017-05-12Use char ranges to avoid compilation errors on elder compilersEugen Wissner
2017-05-12Fix unittests on 2.072 and 2.071Eugen Wissner
2017-05-12Replace tabs with spaces in mmappool and bufferEugen Wissner
2017-05-12Insert String.insertFront and String.insertBackEugen Wissner
2017-05-12Replace immutable with const in VectorEugen Wissner
2017-05-12Add String.removeEugen Wissner
2017-05-11Add editorconfigEugen Wissner
2017-05-11Add codecov badgeEugen Wissner
2017-05-11Generate unittest coverage informationEugen Wissner
2017-05-11Fix appveyor branch badgesEugen Wissner
2017-05-11Appveyor (#10)Eugene Wissner
* Add appveyor.yml * Try major VC version * Switch to VC 2015 * Try new version * Try enterprise * Try another path * Change VC template * Set arch * Set LINKCMD64 * Fix quotes * Update LINKCMD64 * remove dir * Update arch * Fix syntax * Set arch to x64 * Remove extra dub downloading * Remove dub version * Download dub for 2.071.2 * Use DVersion * Fix nul in powershell * Put quotes to commands * Add badges
2017-05-10mp.Integer: add two's complement constructorEugen Wissner
2017-05-10Add information about io branchEugen Wissner
2017-05-09math.mp.Integer.toVector return two's complementEugen Wissner
2017-05-08math.mp.Integer: Return two's complement lengthEugen Wissner
2017-05-06Remove utf8string branchEugen Wissner
2017-05-05Fix fill with char on older compilersEugen Wissner
2017-05-04Implement string slice assignmentsEugen Wissner
2017-05-03Merge branch 'master' into utf8stringEugen Wissner
2017-05-03Add HMACEugen Wissner
2017-05-02Merge branch 'master' into utf8stringEugen Wissner
2017-05-02Make Vector's opSliceAssign accept only own rangesEugen Wissner
Vector.opSliceAssign and Vector.opIndexAssign should accept only vector ranges. For assigning other ranges, std.algorithm.mutation.copy and std.algorithm.mutation.fill should be used.
2017-05-01Add ByCodePointEugen Wissner
2017-05-01Implement opCmp and opEquals for the StringEugen Wissner
2017-05-01Implement String opAssignEugen Wissner
2017-05-01Merge branch 'master' of github.com:caraus-ecms/tanya into utf8stringEugen Wissner
2017-05-01Fix container ctors and opAssign ref parametersEugen Wissner
Container constructors and opAssign should accept any ref container and not only const, otherwise the source container will be copied because the constructor/opAssign without ref would be a better match.
2017-04-30Integer storage optimizationv0.4.0Eugen Wissner
2017-04-25Make Integer representation little endianEugen Wissner
2017-04-21Make String to be a char Slice aliasEugen Wissner
2017-04-20Merge branch 'master' into utf8stringEugen Wissner
2017-04-20Merge branch 'master' of github.com:caraus-ecms/tanyaEugen Wissner
2017-04-20Rename Vector range to SliceEugen Wissner
2017-04-19Make Integer representation little endianEugen Wissner
2017-04-16Merge branch 'master' into utf8stringEugen Wissner
2017-04-16Add unittest to check RefCounted calles struct destructorsEugen Wissner
2017-04-16Merge branch 'master' into utf8stringEugen Wissner
2017-04-16Make RefCounted work with dynamic arraysEugen Wissner
2017-04-16Add internal finalize method for finalizing an object without deallocatingEugen Wissner
2017-04-13Merge remote-tracking branch 'origin/master' into utf8stringEugen Wissner