Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # immutable read function (read the property directly)
  2. function read($hash, $k) {
  3. $hash[$k]
  4. }
  5.  
  6. # immutable write function (copy on write)
  7. function write($hash, $k, $v) {
  8. $newHash = $hash.Clone()
  9. $newHash[$k] = $v
  10. $newHash
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement