Robb Böhnke
Robb Böhnke
I'm having trouble building `documentalist`. I've installed llvm 3.3 through homebrew (keg-only). Then I ran ``` bash cabal install --only-dependencies cabal configure --extra-include-dirs=/usr/local/opt/lvvm/include --extra-lib-dirs=/usr/local/opt/llvm/lib cabal build ``` but I got...
This maintains the `minimumWidth` by overriding `sizeThatFits(:)` instead of using Auto Layout. It appears that one of the implicit constraints disabled by `self.translatesAutoresizingMaskIntoConstraints` is critical for the `NSPopover` to maintain...
* carthage install method: [ ] .pkg, [ ] homebrew, [ ] source [x] unsure, comes with GitHub actions * `which carthage`: * `carthage version`: 0.36.0 * `xcodebuild -version`: Xcode...
This adds `ASTChain`, a helper macro to reduce boilerplate in cases where intermediate results of a transformation would pollute the current scope. E.g. ``` objc NSArray *messages = ASTPluck(tweets, @keypath(XYTweet.new,...
yay or nay? Those methods would make sense for NSIndexSet: - [ ] ASTAll - [ ] ASTAny - [ ] ASTDifference - [ ] ASTEach - [ ] ASTEmpty...
This one is a little more tricky since `NSCountedSet` inherits from `NSMutableSet`. Since we would want `ASTMap(countedSet, block);` to be equivalent to `ASTMap((NSSet *)countedSet, block);`, "unrolling" versions of `map` et....
Write specs where necessary to make sure that `ASTWhatever(nil, block) == nil`.