aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/atom.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/concurrency/atom.lux10
1 files changed, 7 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/concurrency/atom.lux b/stdlib/source/lux/control/concurrency/atom.lux
index 350554437..8a46413da 100644
--- a/stdlib/source/lux/control/concurrency/atom.lux
+++ b/stdlib/source/lux/control/concurrency/atom.lux
@@ -26,17 +26,21 @@
(with_expansions [<new> (for {@.js "js array new"
@.python "python array new"
@.lua "lua array new"
- @.ruby "ruby array new"}
+ @.ruby "ruby array new"
+ @.php "php array new"}
(as_is))
<write> (for {@.js "js array write"
@.python "python array write"
@.lua "lua array write"
- @.ruby "ruby array write"}
+ @.ruby "ruby array write"
+ @.php "php array write"}
(as_is))
+
<read> (for {@.js "js array read"
@.python "python array read"
@.lua "lua array read"
- @.ruby "ruby array read"}
+ @.ruby "ruby array read"
+ @.php "php array read"}
(as_is))]
(abstract: #export (Atom a)
(with_expansions [<jvm> (java/util/concurrent/atomic/AtomicReference a)]