Long.php 555 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace Swoole\Atomic;
  3. class Long
  4. {
  5. public function __construct($value = null)
  6. {
  7. }
  8. /**
  9. * @return mixed
  10. */
  11. public function add($add_value = null)
  12. {
  13. }
  14. /**
  15. * @return mixed
  16. */
  17. public function sub($sub_value = null)
  18. {
  19. }
  20. /**
  21. * @return mixed
  22. */
  23. public function get()
  24. {
  25. }
  26. /**
  27. * @return mixed
  28. */
  29. public function set($value)
  30. {
  31. }
  32. /**
  33. * @return mixed
  34. */
  35. public function cmpset($cmp_value, $new_value)
  36. {
  37. }
  38. }