-
Notifications
You must be signed in to change notification settings - Fork 24
/
SUMMARY.md
167 lines (108 loc) · 3.57 KB
/
SUMMARY.md
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
## 目录
* [V语言学习笔记](README.md)
* [目录](SUMMARY.md)
---
* [安装](content/install.md)
* [开发工具](content/editor.md)
* [快速总览](content/overview.md)
* [模块](content/module.md)
* [基本类型](content/basictype.md)
* [变量](content/var.md)
* [常量](content/const.md)
* [枚举](content/enum.md)
* [数组](content/array.md)
* [字典](content/map.md)
* [流程控制](content/flowcontrol.md)
* [函数](content/fn.md)
* [结构体](content/struct.md)
* [访问控制](content/access_controll.md)
* [方法](content/method.md)
* [注解](content/attribute.md)
* [接口](content/interface.md)
* [泛型](content/generic.md)
* [类型别名](content/type_alias.md)
* [联合类型](content/sum_type.md)
* [联合体](content/union.md)
* [错误处理](content/error.md)
* [运算符重载](content/overload.md)
* [内置json支持](content/json.md)
* [内置sql支持](content/sql.md)
* [并发](content/concurrent.md)
* [内存管理](content/memory.md)
* [代码测试](content/test.md)
* [文档生成](content/doc.md)
* [编译时代码](content/comptime.md)
* [包管理器](content/package.md)
* [单个V文件](content/singlev.md)
* [V shell script](content/shell.md)
* [不安全代码](content/unsafe.md)
* [集成C代码库](content/c.md)
* [集成汇编代码](content/asm.md)
* [裸机环境](content/bare_metal.md)
* [生成wasm](content/wasm.md)
* [GUI开发](content/gui.md)
* [web开发](content/vweb.md)
* [数据库开发](content/db.md)
##### 常用标准库
* [builtin](content/std_builtin.md)
* [strings](content/std_strings.md)
* [arrays](content/std_arrays.md)
* [maps](content/std_maps.md)
* [datatypes](content/std_datatypes.md)
* [strconv](content/std_strconv.md)
* [os](content/std_os.md)
* [runtime](content/std_runtime.md)
* [time](content/std_time.md)
* [math](content/std_math.md)
* [json](content/std_json.md)
* [encoding](content/std_encoding.md)
* [compress](content/std_compress.md)
* [toml](content/std_toml.md)
* [flag](content/std_flag.md)
* [term](content/std_term.md)
* [log](content/std_log.md)
* [io](content/std_io.md)
* [readline](content/std_readline.md)
* [reflection](content/std_reflection.md)
* [net](content/std_net.md)
* [net.http](content/std_http.md)
* [eventbus](content/std_eventbus.md)
* [regex](content/std_regex.md)
* [crypto](content/std_crypto.md)
* [rand](content/std_rand.md)
* [sync](content/std_sync.md)
* [x](content/std_x.md)
##### web相关库
[vweb](content/vweb.md)
[websocket](content/websocket.md)
##### 数据库相关库
* [db.pg](content/pg.md)
* [db.mysql](content/mysql.md)
* [db.mssql](content/mssql.md)
* [db.sqlite](content/sqlite.md)
* [orm](content/orm.md)
##### GUI相关库
* [ui](content/ui.md)
* [sokol](content/sokol.md)
* [gg](content/gg.md)
* [gx](content/gx.md)
* [fontstash](content/fontstash.md)
* [stbi](content/stbi.md)
* [clipboard](content/clipboard.md)
##### V编译器
* [V抽象语法树](content/vast.md)
* [V语言服务](content/vls.md)
* [V编译器源代码](content/compiler.md)
* [生成C代码](content/gen_c.md)
* [生成js代码](content/gen_js.md)
* [生成go代码](content/gen_go.md)
* [生成native代码](content/gen_native.md)
* [解释器直接运行](content/interpreter.md)
##### 附录
* [附录1 关键字](content/keyword.md)
* [附录2 运算符](content/operator.md)
* [附录3 编码风格](content/style.md)
* [附录4 V编译器命令行使用](content/toolchain.md)
* [附录5 V调试及错误定位](content/debug.md)
* [附录6 V和Go基本语法参照](content/v_and_go.md)
* [附录7 V和Zig基本语法参照](content/v_and_zig.md)