Nick Meepo

Results 3 issues of 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. ![image](https://user-images.githubusercontent.com/10824752/160771370-98fc8b40-28fb-4f26-89a8-9c07a071ed27.png) 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...