append
append 的使用方式
append 的使用方式let numbers = [1, 2, 3].publisher numbers .append(4, 5, 6) .sink { print($0) }1 2 3 4 5 6let firstPublisher = [1, 2, 3].publisher let secondPublisher = [4, 5, 6].publisher firstPublisher .append(secondPublisher) .sink { print($0) }1 2 3 4 5 6
注意事项
append 运算符的分类依据
append 运算符的分类依据Last updated