- Mastering Elixir
- André Albuquerque Daniel Caixinha
- 144字
- 2021-08-05 10:42:50
Dialyzer
Dialyzer (http://erlang.org/doc/man/dialyzer.html) is a tool that ships with Erlang and performs static analysis of code. It analyses compiled .beam files, making it available for all programming languages that run on the Erlang VM (such as Elixir!). While Dialyzer can be helpful on projects that don't have typespecs (as it can, for instance, find redundant code), its power is maximized on projects that have their functions annotated with typespecs. This way, Dialyzer is able to report on typing errors, which brings you closer to the security you can get on a statically-typed language.
Although we won't be exploring Dialyzer in this book, we highly recommend its usage, as it can be very helpful. Particularly, we feel that the Dialyxir library (https://github.com/jeremyjh/dialyxir), is a great way to integrate Dialyzer into Elixir projects, as it abstracts away part of the complexity of dealing with Dialyzer directly.
- .NET之美:.NET關(guān)鍵技術(shù)深入解析
- 在最好的年紀(jì)學(xué)Python:小學(xué)生趣味編程
- 測試驅(qū)動開發(fā):入門、實(shí)戰(zhàn)與進(jìn)階
- Python自動化運(yùn)維快速入門
- 微服務(wù)設(shè)計(jì)原理與架構(gòu)
- Java Web基礎(chǔ)與實(shí)例教程
- Python機(jī)器學(xué)習(xí)基礎(chǔ)教程
- C++寶典
- C語言程序設(shè)計(jì)與應(yīng)用(第2版)
- C++ Application Development with Code:Blocks
- Deep Learning with R Cookbook
- C語言程序設(shè)計(jì)
- SAS編程演義
- Java 7 Concurrency Cookbook
- Android從入門到精通