6 ms·
A clojure vector is an inbuilt data structure of the language and looks like this: [1 2 3] I am using them to construct side effects which I call 'transactions
by resatori 2y ago
A clojure vector is an inbuilt data structure of the language and looks like this: [1 2 3]
I am using them to construct side effects which I call 'transactions' (similar to datomic) [:tx/foo 3] where :tx/foo is a keyword and uniquely identifies the component behaviour.
- CyberDildonics 2y ago> inbuilt data structure of the language and looks like this: [1 2 3] array / vector > construct side effects which I call 'transactions' setting a variable > where :tx/foo is a keyword variable or hashmap > uniquely identifies the component behaviour running a function
- refset 2y agoReminds me a little of this Flappy Bird demo which makes use of DataScript's Datalog rules https://frankiesardo.github.io/minikusari/#!/minikusari.tutorial3 https://frankiesardo.github.io/minikusari/#!/minikusari.tuto...