]> gerrit.simantics Code Review - simantics/platform.git/commitdiff
Rename linked list functions that are overlapping or are too generic 25/2625/1
authorMarko Luukkainen <marko.luukkainen@semantum.fi>
Tue, 29 Jan 2019 11:06:53 +0000 (13:06 +0200)
committerMarko Luukkainen <marko.luukkainen@semantum.fi>
Tue, 29 Jan 2019 11:06:53 +0000 (13:06 +0200)
gitlab  #250

Change-Id: Iae2e7ffc420970cb52c85c391361f02da3be3f28

bundles/org.simantics.scl.db/scl/Simantics/DB.md
bundles/org.simantics.scl.db/scl/Simantics/DB.scl

index 81ee3b6d862d5138ef983adb5505210ee7254bc4..d51ecddd8977de485193dade48f218dc19ed3bc7 100644 (file)
 ::value[elementsOfOrderedSet]
 ::value[parentOrderedSet]
 
+## Linked List
+
+::value[elementsOfList,createList,createListWithType]
+::value[insertListBack,insertListFront,removeListElement]
+::value[swapListElementWithPrevious,swapListElementWithNext]
+
 ## Transactions
 
 ::value[syncRead, asyncRead]
index adc72bb943e1cd0a788eaa4369be8deb10b36861..af8c194762c50810150f49f7cc9dd4b029a54c38 100644 (file)
@@ -305,26 +305,35 @@ importJava "org.simantics.db.common.utils.OrderedSetUtils" where
     elementsOfOrderedSet :: Resource -> <ReadGraph> [Resource]
     
 importJava "org.simantics.db.common.utils.ListUtils" where
+    "`elementsOfList l` returns elements of list `l`"
     @JavaName toList
     elementsOfList :: Resource -> <ReadGraph> [Resource]
     
+    "`createList [e]` creates a new list containing elements `[e]`"
     @JavaName create
     createList :: [Resource] -> <WriteGraph> Resource
 
+    "`createListWithType t [e]` creates a new list with type `t` containing elements `[e]`"
     @JavaName create
     createListWithType :: Resource -> [Resource] -> <WriteGraph> Resource
     
-    @javaName insertBack
-    insertBack :: Resource -> [Resource] -> <WriteGraph> ()
+    "`insertListBack l [e]` inserts elements `[e]` back to the list `l`"
+    @JavaName insertBack
+    insertListBack :: Resource -> [Resource] -> <WriteGraph> ()
     
-    @javaName removeElement
-    removeElement :: Resource -> Resource -> <WriteGraph> Boolean
+    "`insertListFront l [e]` inserts elements `[e]` front of the list `l`"
+    @JavaName insertFront
+    insertListFront :: Resource -> [Resource] -> <WriteGraph> ()
     
-    @javaName swapWithPrevious
-    swapWithPrevious :: Resource -> Resource -> <WriteGraph> Boolean
+    "`removeListElement l e` removes a element `e` from the list `l`"
+    @JavaName removeElement
+    removeListElement :: Resource -> Resource -> <WriteGraph> Boolean
+    
+    @JavaName swapWithPrevious
+    swapListElementWithPrevious :: Resource -> Resource -> <WriteGraph> Boolean
 
-    @javaName swapWithNext
-    swapWithNext :: Resource -> Resource -> <WriteGraph> Boolean
+    @JavaName swapWithNext
+    swapListElementWithNext :: Resource -> Resource -> <WriteGraph> Boolean
 
 
 importJava "org.simantics.db.common.utils.CommonDBUtils" where