Left Shift operator (<<)¶
Left shift operator allows to add elements to collections
List<int> a = [1, 2, 3]
a << 2
Left shift operator allows to add elements to collections
List<int> a = [1, 2, 3]
a << 2