diff --git a/cheatsheet/snapshot.html b/cheatsheet/snapshot.html index 82d710a..c3e5d58 100644 --- a/cheatsheet/snapshot.html +++ b/cheatsheet/snapshot.html @@ -167,10 +167,20 @@

Lists

Objects

+
var = object(…,object,…);
+
  copy
+
var = object(…,name=value,…);
+
  assign/override
+
var = object(…,[…,["name"],…],…);
+
  remove name
+
var = object(…,[…,["name",value],…],…);
+
  add name=value
var = obj["name"];
-
  get value from object by string
+
  get value from object by name
var = obj.name;
  get value from object by identifier
+
has_key(object,"name");
+
  
@@ -212,6 +222,8 @@

Type test functions

is_function is_object
+ +

Other

echo(…) @@ -220,9 +232,6 @@

Other

assert(condition, message) assign (…) { … }
-
- -

Functions

concat