API: elixir

https://hexdocs.pm/elixir/Module.html#content

API: erlang

http://www.cnerlang.com/api.html?keyword=erlang%3Aput

Ellxir

https://elixir-lang.org/docs.html

Elixir School

https://elixirschool.com/zh-hans/

Erlang API

http://erlang.org/doc/apps/stdlib/

Doc

https://hexdocs.pm/elixir/Kernel.html

elixir: 语法速查

https://devhints.io/elixir

Elixir中的元编程-宏

https://szpzs.oschina.io/2017/02/26/elixir-getting-started-meta-macros/

Elixir 教程

https://cloud.tencent.com/developer/doc/1071

Elixir - 教程

https://iowiki.com/elixir/elixir_index.html

Elixir文档推荐

Elixir Cheat Sheet http://media.pragprog.com/titles/elixir/ElixirCheat.pdf

官方文档 http://elixir-lang.org/getting-started/introduction.html

Elixir 简介

https://www.cnblogs.com/wang_yb/p/8822221.html

Ellxir的更多相关文章

随机推荐

  1. 文件权限和访问控制列表ACL (1)

    背景知识: 文件的权限主要针对三类对象进行定义 Owner: 属主u Group: 属组g Other: 其他o 每个文件针对每一类的访问者都设定了三种权限 r: Readable 读 w: Writ ...

  2. 一张图理清 Python3 所有知识点

    如果你前几天一直有关注 GitHub Trending,那你应该会留意到「Python3 in one pic」这个开源项目. 很多人学习python,不知道从何学起.很多人学习python,掌握了基 ...

  3. Spring Cloud 之服务注册中心高可用

    服务注册中心高可用 服务注册中心 eureka-server 高可用实施 版本 Spring Boot 版本 # Spring Boot 版本: <parent> <groupId& ...

  4. Css 图片自适应

    设置 CSS .container{ overflow:auto; } img{ width:100%; height:auto; overflow:hidden; } 设置 template < ...

  5. TD课程通的使用体验

    这个软件一点进去便是石家庄铁道大学,但是那张图片可以尽量的缩小一点比例,可以选择部分,至少能够让人了解到这是什么,另外,可以添加注册功能,或者是使用学号什么的来登录,亦或者手机号码等,整体的展示效果还 ...

  6. 使用 VMware Workstation Pro 让 PC 提供云桌面服务——学习笔记(二)

    实验效果: 这次希望的效果是能够用远程桌面来实现 . 这里参考了博客 https://www.cnblogs.com/wwang/archive/2011/01/06/1928933.html 操作步 ...

  7. CheckList:ACL 2020 Best Paper

    Beyond Accuracy: Behavior Testing of NLP Models with CheckList. Marco Tulio Ribeiro, Tongshuang Wu, ...

  8. 41.4 Method Security方法安全性

    41.4.1 <global-method-security> 这个元素是为Spring Security beans上的安全方法添加支持的主要手段.可以通过使用注释(在接口或类级别定义) ...

  9. linux命令--大小写转换命令

    1.tr命令 tr命令转换小写为大写     cat aa.txt | tr a-z A-Z 或者   cat aa.txt | tr [:lower:] [:upper:]  tr命令大写转换小写  ...

  10. Arrays中toString 和 binarySearch 的原代码

    只是记住方法是干什么的,但是对具体方法的理解还是不够 查找方法 当所查找的不存在的时候 返回值应该是 return -(low + 1);   一直知道toString 是转换成为字符串  但是具体的 ...