OSCCore icon indicating copy to clipboard operation
OSCCore copied to clipboard

A tiny OSC module implementation in Swift

Results 3 OSCCore issues
Sort by recently updated
recently updated
newest added

Amend GH Actions Include aarch64 platform as wel

enhancement

NIO provides a useful type for serializing stuff into byte stream, [ByteBuffer](https://apple.github.io/swift-nio/docs/current/NIO/Structs/ByteBuffer.html). Actual implementation simply concatenates output into `[UInt8]`. `ByteBuffer` covers this function way better. ## Affected types * `OSCConvertible`...

enhancement

Scope So far OSCCore uses its own serialization technique. Swift 4 brings in [Codables](https://developer.apple.com/documentation/swift/codable) providing a standard way of doing it. Transforming current implementation covers the following tasks. * High...

story