mirror of
https://github.com/Dev1an/MsgPack.git
synced 2026-04-05 10:35:51 +00:00
No description
| MsgPack | ||
| MsgPack.xcodeproj | ||
| MsgPackTests | ||
| Playground.playground | ||
| Workspace.xcworkspace | ||
| .gitignore | ||
| README.md | ||
Usage
import MsgPack
let encoder = Encoder()
try encoder.encode("Hello world")
try encoder.encode("😇")
try encoder.encode(0x0102030405060708)
try encoder.encode(["Some strings", "in an array"])
Take a look at the playground for more examples.