summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2017-01-09 17:03:09 +0100
committerEugen Wissner <belka@caraus.de>2017-01-09 17:03:09 +0100
commit87b74b2542131c5a7749e1a174d776aed2e7ddeb (patch)
treea78d7ff7797612231d4137f04bddf905f94033bc /README.md
parentd6514cb51595729fd78be593fe54b7ade4888b80 (diff)
downloadtanya-87b74b2542131c5a7749e1a174d776aed2e7ddeb.tar.gz
Fix reallocating the vector
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index 0666b27..77703f7 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,7 @@
[![Dub downloads](https://img.shields.io/dub/dt/tanya.svg)](https://code.dlang.org/packages/tanya)
[![License](https://img.shields.io/badge/license-MPL_2.0-blue.svg)](https://raw.githubusercontent.com/caraus-ecms/tanya/master/LICENSE)
-Tanya is a general purpose library for D programming language that doesn't
-rely on the Garbage Collector.
+Tanya is a general purpose library for D programming language.
Its aim is to simplify the manual memory management in D and to provide a
guarantee with @nogc attribute that there are no hidden allocations on the
@@ -36,12 +35,12 @@ helper functions).
The library is currently under development, but some parts of it can already be
used.
+`network` and `async` exist for quite some time and could be better tested than
+other components.
+
Containers were newly reworked and the API won't change significantly, but will
be only extended. The same is true for the `memory` package.
-`network` and `async` packages should be reviewed in the future and the API may
-change.
-
`math` package contains an arbitrary precision integer implementation that has
a stable API (that mostly consists of operator overloads), but still needs
testing and work on its performance.