-
[Swift] removeAll(where:) 써보기Swift 2022. 11. 16. 00:09
var someList: [Int] = [1,2,3,4,5] someList.removeAll(where: { $0 == 5 }) print(someList) // 출력👇👇 // [1, 2, 3, 4]
'Swift' 카테고리의 다른 글
[Swift] GitHub : Rate Limit Exceeded 해결하기 (0) 2022.11.22 [Swift] Enum - Associated Values and Raw Values (0) 2022.11.21 [Swift] async await 쓰는 법 (0) 2022.11.15 [xcode] Device 가 No selection 인 경우 (0) 2022.11.04 [Swift] App Group, CoreData Migration (0) 2022.09.05