作为标题,golang中iota(不是用法)的全名是什么:
const ( // iota is reset to 0 c0 = iota // c0 == 0 c1 = iota // c1 == 1 c2 = iota // c2 == 2 )
这本身就是全名. “iota”是希腊字母表中的字母.这是典型的数学符号:
原文链接:https://www.f2er.com/go/186938.html>作为求和和算法中的迭代器
>如subscript index
>为imaginary part of complex numbers
您也可以在其他编程语言中找到它(参见iota in Scheme).