标签: swift
在Swift中,这个编译没有错误:
[1] == [1]
但是,如果我尝试编译:
[[1]] == [[1]]
我收到错误:
Binary operator '==' cannot be applied to two '[Array<Int>]' operands
这是预期的吗?这只是标准库中的遗漏,还是难以以通用方式提供?