From 54f45e5bf54b29af68ae14e53405bf84cd5b52a4 Mon Sep 17 00:00:00 2001 From: A4-Tacks Date: Sat, 4 May 2024 01:05:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85const-match=E7=9A=84=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B=E4=B8=AD=E5=80=BC=E6=A8=A1=E5=BC=8F=E7=9A=84=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/const_match.mdtlbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/const_match.mdtlbl b/examples/const_match.mdtlbl index 8282612..a4551a2 100644 --- a/examples/const_match.mdtlbl +++ b/examples/const_match.mdtlbl @@ -14,7 +14,7 @@ * 在这里面将会有一个独立的参数环境, 拥有一个参数指向要匹配的值 * 在匹配时会将守卫take, 得到的句柄非`0`则判定通过 * -* 值模式: 它会直接将对应这个位置的被匹配值take, 然后直接对句柄匹配 +* 值模式: 例如 `[*V]`, 它会直接将对应这个位置的被匹配值take, 然后直接对句柄匹配 * 需要注意的是, 它可能在多个分支被take多次, 只是守卫模式的一个语法糖 * 其具体原理可以使用`A`编译选项查看 *