有些操作符,比如赋值,要求其中的一个操作数必须是左值。
Some operators, such as assignment, require that one of their operands be an lvalue.
ASSIGN_OP 中的模式匹配任何标准的赋值运算符:=、+=、-=、*=,等等,但是注意不要匹配其他包含 = 的运算符,比如 == 和 =~。
The pattern in ASSIGN_OP matches any of the standard assignment operators: =, +=, -=, *=, etc. but carefully avoids matching other operators that contain =, such as == and =~.
为一些具体的“eze”术语(比如ezedtelc、ezedaylc和ezeconct)赋值。
Assigns values to some specific "eze" terms like ezedtelc, ezedaylc and ezeconct.
You can also assign to a list, or to an element of a list. So ivy sub 1, f -15 or example, could be assigned minus 15, and that will actually mutate the list.
此外你还可以给一个数组,或者数组内部的元素赋值,比如ivy。sub,可以被赋值为,这确实改变了数组。
应用推荐