WWW-www.enlightenment.org pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=a9e2dfa4263ce5a3985e62af322e405f6ec8a97d

commit a9e2dfa4263ce5a3985e62af322e405f6ec8a97d
Author: Lauro Moura <lauromo...@expertisesolutions.com.br>
Date:   Thu Nov 26 11:24:59 2015 -0800

    Wiki page eina changed with summary [] by Lauro Moura
---
 pages/api/javascript/eina.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pages/api/javascript/eina.txt b/pages/api/javascript/eina.txt
index 126a74c..c85840c 100644
--- a/pages/api/javascript/eina.txt
+++ b/pages/api/javascript/eina.txt
@@ -6,7 +6,9 @@ This document describes the parts that make Eina and their 
usage in the eyes of
 
 ===== Data types =====
 
-Currently, two data types are available: Lists and Arrays. Both represent 
sequence of items and aim to have a similar interface to the native 
[[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array|JS
 Arrays]] for the most common operations. One important limitation is that when 
you create an Eina collection you must pass the type of object that will be 
stored. This is required to allow the binding do the correct conversion between 
Javascript types and C/ [...]
+Currently, two data types are available: Lists and Arrays. Both represent 
sequence of items and aim to have a similar interface to the native 
[[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array|JS
 Arrays]] for the most common operations, like push/pop and indexed get/set.
+
+One important limitation is that when you create an Eina collection you must 
pass the type of object that will be stored. This is required to allow the 
binding do the correct conversion between Javascript types and C/C++ types due 
to the former's static nature.
 
 Besides the constructor function, they differ in the way the items are stored 
underneath. ''efl.List'' are doubly-linked lists, with relatively fast 
insert/delete operations in the middle of the collection while ''efl.Array'' 
objects are contiguous memory arrays, with fast data access (compared to Lists) 
but costly to insert or delete items in the middle of the collection.
 

-- 


Reply via email to