Matt Zanchelli
Matt Zanchelli
Steps to reproduce: 1. Open app 2. Navigate to a project 3. Open/create new document 4. Hit return until caret goes below the visible space 5. Attempt to scroll down...
Correct, the navigation controller and the status bar. When showing the keyboard, the navigation controller slides under the status bar before the status bar moves off screen. When hiding the...
Thank you @kareman ! Any plans on submitting the changes as a pull request?
@kareman D’oh! 🤦♂️ I totally overlooked the differences in the link and your username.
What build errors are you seeing?
It’s been a while since I’ve looked at this, but calculating the number of combinations of size `0...k` (last line in [Pascal’s triangle](https://en.wikipedia.org/wiki/Pascal's_triangle)) can be done with a power of...
There could probably be optimizations based on `count`. For example, if `other`’s `count` is larger than `self`, then there’s no point in iterating through `self` since it could never contain...
@xwu Thanks for taking a look at this! I think I need to improve the documentation clarifying why this is useful. While the implementation of this function isn’t terribly complex,...
> Or do you suspect that most uses of these methods will want to only count the elements that satisfy some condition? The original desire was to have a function...
That example could be written quite easily with `filter(_:)` without the need for a separate `without(_:)` function: ```swift let excludedAnimals = ["Bulldog", "Labrador"] return animals.filter({ !excludedAnimals.contains($0) }) // ["Cow"] ```...