Eric Liu
Results
4
comments of
Eric Liu
@theRealAph Could you help to take a look? Thanks.
The uncons return a two-tuples? ``` java list(1, 2 ,3).uncons().first() // 1 list(1, 2, 3).uncons().second()// (2, 3) ```
个人感觉当成个语法糖就行了。