LocSta icon indicating copy to clipboard operation
LocSta copied to clipboard

An F# library for composing state-aware functions by @SchlenkR

Results 2 LocSta issues
Sort by recently updated
recently updated
newest added

Example: ```fsharp let mutFunc ctor = (ctor ()) fun cont (_: unit) -> gen { let res = cont () return { value = res; state = cont } }...