Nick Meepo
Nick Meepo
When triggering removeAll or deinit of very long LinkedList ( like 1...10000000 integers storage),you will get stack overflow. The reason is nodes` recursive releasing.  From the image above you...
### New Issue Checklist 🚫 If this template is not filled out your issue **will** be closed with no comment. 🚫 * [Y] I have looked at the [Documentation](http://snapkit.io/docs) *...
We should use NSString.length instead of String.count when dealing with NSRange and NSAttributedString. NSRange(location: 0, length: (labelText as NSString).length) is preferred to NSRange(location: 0, length:labelText.count). The error will occur when...