forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.exs
79 lines (79 loc) · 1.61 KB
/
docs.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[
groups_for_modules:
[
SHELL: [:shell, :shell_default, :c, :shell_docs, :edlin, :edlin_expand],
PROCESSES: [
:gen_event,
:gen_fsm,
:gen_server,
:gen_statem,
:pool,
:proc_lib,
:supervisor,
:supervisor_bridge,
:sys,
:log_mf_h
],
STRINGS: [
:uri_string,
:unicode,
:string,
:re,
:io,
:io_lib,
:filelib,
:filename,
:file_sorter,
:base64,
:erl_error
],
DATATYPES: [:binary, :maps, :lists, :math],
CODE: [
:erl_scan,
:erl_pp,
:erl_parse,
:erl_lint,
:erl_internal,
:erl_id_trans,
:ms_transform,
:erl_features,
:erl_expand_records,
:erl_eval,
:erl_anno,
:epp,
:beam_lib
],
"DATA STRUCTURES": [
:array,
:dict,
:digraph,
:digraph_utils,
:gb_sets,
:gb_trees,
:json,
:orddict,
:ordsets,
:proplists,
:queue,
:sets,
:sofs,
:ets,
:dets,
:qlc
],
ALGORITHMS: [:rand, :random, :zip, :erl_tar],
"DATE & TIME": [:calendar, :timer],
NODES: [:slave, :peer, :argparse, :escript, :win32reg]
]
|> Enum.sort(),
## The order of these items determine
## how they are listed in the docs
extras: [
"guides/introduction.md",
"guides/io_protocol.md",
"guides/unicode_usage.md",
"guides/uri_string_usage.md",
"references/assert_hrl.md",
"stdlib_app.md"
]
]