文件名称:elm优化:有关Elm优化的示例和说明
文件大小:4KB
文件格式:ZIP
更新时间:2024-03-06 06:39:58
elm Elm
榆木优化 运行测试: $ cd elm-optimizations/XXX $ elm-test src/* 运行基准: $ cd elm-optimizations/XXX $ elm make --optimize src/* 然后在浏览器中打开生成的index.html 。 基准基于初始化。 是否元组 目录: TupleOrNot 在自定义类型中使用元组比不使用元组更快。 type TypeA = TypeA Int Int Int type TypeB = TypeB ( Int , Int , Int ) Firefox Chromium -------- -------- TypeA Int Int Int
【文件预览】:
elm-optimizations-master
----LICENSE(1KB)
----.gitignore(21B)
----README.md(1KB)
----TupleOrNot()
--------elm.json(826B)
--------src()