Swift네이버웹툰
ContiguousArray vs Array
Say your resume claims "ContiguousArray is faster than Array." In a pre-interview the interviewer asks, "Then why don't developers use ContiguousArray much in practice?" How would you answer?
ContiguousArray vs Array
Say your resume claims "ContiguousArray is faster than Array." In a pre-interview the interviewer asks, "Then why don't developers use ContiguousArray much in practice?" How would you answer?
SwiftShort answerAdvanced
Why can't you index a String with an integer like text[3], and why is text.count O(n)?
#performance
SwiftShort answerExpert
You need a struct ImageBuffer that wraps a large pixel buffer, keeps value semantics, and…
#performance
SwiftMultiple choiceIntro
You have tens of thousands of user IDs and need to check repeatedly whether a given ID is…
#array
SwiftShort answerExpert
A Swift module has to call into legacy Objective-C code and be called from it. How do you…
#bridging