From 95c27c50d0391db6417e6233f360ea7f0b42bb5c Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Tue, 28 Jul 2020 19:55:02 +0200 Subject: [PATCH] Update --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 04b5a5f..5cc883b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # ExaArray ExaArray is a .NET library for exa-scale array-like structures. By using this library, it becomes possible to add up to 4.4 quintillion i.e. 4,410,000,000,000,000,000 elements into one array. When using `byte` for `T`, -this would need approx. 3.8 EB of memory. \ No newline at end of file +this would need approx. 3.8 EB of memory. + +Extending the data structure performs as O(n) with O(m+n) of memory. Accessing the data performs as O(1), though. +For the generic type `T`, any .NET type can be used: The ExaArray uses managed memory. \ No newline at end of file