We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6af968 + b7d5c35 commit 8f54cdbCopy full SHA for 8f54cdb
src/Record/Builder.purs
@@ -29,6 +29,9 @@ foreign import unsafeRename :: forall r1 r2. String -> String -> Record r1 -> Re
29
-- | fields in-place, instead of using `insert` and repeatedly generating new
30
-- | immutable records which need to be garbage collected.
31
-- |
32
+-- | The mutations accumulated in a `Builder` are safe because intermediate states can't be
33
+-- | observed. These mutations, then, are performed all-at-once in the `build` function.
34
+-- |
35
-- | The `Category` instance for `Builder` can be used to compose builders.
36
37
-- | For example:
0 commit comments