Benjamin Horsleben
Benjamin Horsleben
The previous solution could only solve lines containing 1 color string, not multiple. It should handle any number of color strings this time around.
The Clang ObjC importer in Swift 3 does a transform that breaks the recommended key generation (`"".M().y().S().e().c().r().e().t().K().e().y()`). In order to automatically comply with the new API guide lines (which says...
Moved the section out of TS-only, since both ECMAScript and flow supports it.
There is plenty of use-cases for keeping the current output, such as showing progress while a task is running and then keeping the result when starting the next task. Unfortunately,...
This allows for passing in `Data` or `ByteBufferView` to `send(_:)`, as well as the currently-supported `[UInt8]` type.
I made a small implementation of getting `key('a', 'scope1, scope2', callback)` to work. Basically, that will be a convenience method for doing the following: ``` key('a', 'scope1', callback) key('a', 'scope2',...
I was in the process of prepping my app for having 0 warnings from `SwiftSetting.enableExperimentalFeature("StrictConcurrency")`, and some Sendable issues surfaced from AcmeSwift. Adding Sendable to most public enums and structs...
I added nullability annotations and generic types for the dictionaries. This makes the compiler help you regardless of language, and makes the project much more usable from Swift. I made...
When trying to compile this project with newer Swift versions (I tried 5.10 and 6.1), it fails because of some Optional values. This PR fixes those issues by unwrapping the...