forked from lydiandy/vlang_note
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSUMMARY.md
97 lines (94 loc) · 2.96 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
## 目录
* [V语言学习笔记](README.md)
* --
* [安装](content/install.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/operator_overloading.md)
* [内置json支持](content/json.md)
* [内置sql支持](content/sql.md)
* [并发](content/concurrent.md)
* [内存管理](content/memory.md)
* [代码测试](content/test.md)
* [文档生成](content/doc.md)
* [条件编译/跨平台编译](content/crossplatform.md)
* [编译时反射](content/comptime.md)
* [包管理器](content/package.md)
* [单个V文件](content/singlev.md)
* [Vscript](content/shell.md)
* [不安全代码](content/unsafe.md)
* [集成C代码库](content/c.md)
* [集成汇编代码](content/asm.md)
* [裸机环境](content/bare_metal.md)
* [vui](content/gui.md)
* [vweb框架](content/vweb.md)
* [websocket](content/websocket.v)
* [数据库](content/db.md)
* [在浏览器运行V代码](content/run_in_web.md)
* --
* [常用标准库:](content/std_builtin.md)
* [builtin](content/std_builtin.md)
* [strings](content/std_strings.md)
* [strconv](content/std_strconv.md)
* [os](content/std_os.md)
* [runtime](content/runtime.md)
* [time](content/std_time.md)
* [math](content/std_math.md)
* [json](content/std_json.md)
* [encoding](content/std_encoding.md)
* [flag](content/std_flag.md)
* [term](content/std_term.md)
* [log](content/std_log.md)
* [io](content/io.md)
* [net](content/std_net.md)
* [net.http](content/std_http.md)
* [eventbus](content/eventbus.md)
* [regex](content/regex.md)
* [crypto](content/crypto.md)
* [sync](content/sync.md)
* [x](content/x.md)
* --
* [数据库相关库:](content/pg.md)
* [pg](content/pg.md)
* [mysql](content/mysql.md)
* [sqlite](content/sqlite.md)
* [orm](content/orm.md)
* --
* [GUI相关库:](content/sokol.md)
* [sokol](content/sokol.md)
* [gg](content/gg.md)
* [gx](content/gx.md)
* [glm](content/glm.md)
* [fontstash](content/fontstash.md)
* [stbi](content/stbi.md)
* [clipboard](content/clipboard.md)
* --
* [V抽象语法树](content/vast.md)
* [V编译器源代码](content/compiler.md)
* [生成C代码](content/gen_c.md)
* [生成js代码](content/gen_js.md)
* --
* [附录1 关键字](content/appendix-keyword.md)
* [附录2 编码风格](content/style.md)
* [附录3 V编译器命令行使用](content/toolchain.md)
* [附录4 V报错定位及处理](content/error_handle.md)
* [附录5 V和Go基本语法代码参照](content/v_and_go.md)