You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+1-3
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,13 @@
1
1
# Unfork
2
2
3
-
“Unfork” is the opposite of “fork”; whereas forking allows things to run concurrently, unforking prevents things from running concurrently.
3
+
“Unfork” is the opposite of “fork”; whereas forking allows things to run concurrently, unforking prevents things from running concurrently. Use one of the functions in the `Unfork` module when you have an action that will be used by concurrent threads but needs to run serially.
Copy file name to clipboardExpand all lines: unfork/Unfork.hs
+1-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{- |
2
2
3
-
“Unfork” is the opposite of “fork”; whereas forking allows things to run concurrently, unforking prevents things from running concurrently.
3
+
“Unfork” is the opposite of “fork”; whereas forking allows things to run concurrently, unforking prevents things from running concurrently. Use one of the functions in this module when you have an action that will be used by concurrent threads but needs to run serially.
0 commit comments