Eric Liu

Results 4 comments of Eric Liu

The uncons return a two-tuples? ``` java list(1, 2 ,3).uncons().first() // 1 list(1, 2, 3).uncons().second()// (2, 3) ```

个人感觉当成个语法糖就行了。