码迷,mamicode.com
首页 > 其他好文 > 详细

Erlang/Elixir精选-第6期(20200113)

时间:2020-01-16 00:36:18      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:tle   bat   robert   ref   something   lis   tin   for   点击   

精选文章

  1. Implementing languages on the Erlang VM. -Robert Virding.

    因为视频没有显示PPT,PPT可以在点击这里下载

    • leex - lexical scanner generator
    • yecc - parser generator
    • syntax tools - for building erlang code
    • XML parsers (xmlerl)
    • compiler
  2. Profiling in Erlang.

    fprof,eprof,cover,cprof,top,eep,recon,eflame,eflame2工具列表。

  3. 列表解析不为人知的高级炫技

    比如:

    2> [1 || 1].
    []
    3> [something || nothing].
    []
    4> [2 || []].
    []
    5> [x || 1, 2, 3].
    []
    6> [1 || true].
    [1]
    7> [wat || 1 == 1].
    [wat]
    8> [2 || true, true, true].
    [2]
    9> [3 || true, false, true].
    []
    10> [throw(x) || false, throw(y)].
    []
    11> [throw(x) || true, throw(y)].
    ** exception throw: y

    技术图片

欢迎来语雀投稿或推荐,精选每周一发布,同步更新在语雀博客园

Erlang/Elixir精选-第6期(20200113)

标签:tle   bat   robert   ref   something   lis   tin   for   点击   

原文地址:https://www.cnblogs.com/zhongwencool/p/collection_6.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!