对 Elm 进行排序时使用什么排序算法List
?
> sort [1,3,5,6]
[1,3,5,6] : [comparable]
什么是[comparable]
类型以及如何取回number
?
> [1,2]:: (sort [3,2,1])
[1 of 1] Compiling Repl ( repl-temp-000.elm )
Type error on line 4, column 3 to 24:
[1,2] :: (sort [3,2,1])
Expected Type: [number]
Actual Type: comparable
这可能是了解List
Elm 如何实现的好时机,但我现在不想问任何太深的问题。只需启动并运行它。