atomic-counter-0.1.2.1: Mutable counters that can be modified with atomic operatinos
Copyright(c) Sergey Vinokurov 2022
LicenseApache-2.0 (see LICENSE)
Maintainerserg.foo@gmail.com
Safe HaskellSafe-Inferred
LanguageHaskell2010

Control.Concurrent.Counter.Lifted.ST

Description

Counters that support some atomic operations. Safe to use from multiple threads and likely faster than using IORef or TVar for the same operation (terms and conditions apply).

Synopsis

Documentation

data Counter s Source #

Memory location that supports select few atomic operations.

Isomorphic to STRef s Int.

Instances

Instances details
Eq (Counter s) Source #

Pointer equality

Instance details

Defined in Control.Concurrent.Counter.Lifted.ST

Methods

(==) :: Counter s -> Counter s -> Bool #

(/=) :: Counter s -> Counter s -> Bool #

Create

new :: Int -> ST s (Counter s) Source #

Create new counter with initial value.

Read/write

get :: Counter s -> ST s Int Source #

Atomically read the counter's value.

set :: Counter s -> Int -> ST s () Source #

Atomically assign new value to the counter.

cas Source #

Arguments

:: Counter s 
-> Int

Expected old value

-> Int

New value

-> ST s Int 

Atomic compare and swap, i.e. write the new value if the current value matches the provided old value. Returns the value of the element before the operation

Arithmetic operations

add :: Counter s -> Int -> ST s Int Source #

Atomically add an amount to the counter and return its old value.

sub :: Counter s -> Int -> ST s Int Source #

Atomically subtract an amount from the counter and return its old value.

Bitwise operations

and :: Counter s -> Int -> ST s Int Source #

Atomically combine old value with a new one via bitwise and. Returns old counter value.

or :: Counter s -> Int -> ST s Int Source #

Atomically combine old value with a new one via bitwise or. Returns old counter value.

xor :: Counter s -> Int -> ST s Int Source #

Atomically combine old value with a new one via bitwise xor. Returns old counter value.

nand :: Counter s -> Int -> ST s Int Source #

Atomically combine old value with a new one via bitwise nand. Returns old counter value.