We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#3.3 우선순위 규칙 ####연산자 우선순위
val list = List('b', 'c', 'd') //list: List[Char] = List(b, c, d) 'a' :: list //res0: List[Char] = List(a, b, c, d)
:
'a' :: list
list.::('a')