Merge pull request #45 from pravdomil/patch-1

Update transformations.md
This commit is contained in:
Matthew Griffith 2022-02-06 09:28:07 -05:00 committed by GitHub
commit c74b7be0e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,9 +51,9 @@ MyFunction_fn(one two)
## Results Summary
- Included in `elm-optimize-level-2` tool\*\*
- Included in `elm-optimize-level-2` tool
- Potentially large positive effect on speed
- Likley small but positive effect on asset size
- Likely small but positive effect on asset size
This has lead to dramatic speedups in some cases, especially when a large number of smaller functions are called and the overhead of calling twice as many functions is significant.
@ -103,7 +103,7 @@ f_unwrapped(
This transformation works with separately defined functions too.
# Passing in Unwrappable Functions to Higher Order Functions
## Results Summary
**Future Work**