doc icon indicating copy to clipboard operation
doc copied to clipboard

`atomic-(add|sub)-fetch` not documented or indexed

Open lizmat opened this issue 1 year ago • 1 comments

The title says it all.

lizmat avatar Oct 14 '23 11:10 lizmat

It also looks like none of the atomic operators are documented in /language/operators. Here's the full list (taken from /language/unicode_ascii in case anyone feels like taking a crack at adding them)

  âš›=  | atomic-assign    |
  âš›   | atomic-fetch     | this is the prefix:<âš›> operator
  âš›+= | atomic-add-fetch |
  âš›-= | atomic-sub-fetch |
  ⚛−= | atomic-sub-fetch | this operator uses U+2212 minus sign
  ++âš› | atomic-inc-fetch |
  âš›++ | atomic-fetch-inc |
  --âš› | atomic-dec-fetch |
  âš›-- | atomic-fetch-dec |

codesections avatar Oct 14 '23 13:10 codesections