目录

Cheetah

A simple, yet fast JSON library. Developed for the OpenKitten ecosystem, it is created to feel like it belongs to the ecosystem as well as the programming language.

Cheetah’s aim is to be a performant parser/serializer and to provide a good API.

Usage

Import this dependency into your Package.swift

.Package(url: "https://github.com/OpenKitten/Cheetah.git", majorVersion: 1)

Deserialize from UTF-8 bytes representing a JSON String:

let array = JSONArray(from: bytes)
let object = JSONObject(from: bytes)

Deserialize from a Swift String JSON:

let array = JSONArray(from: bytes)
let object = JSONObject(from: bytes)

Access values in an array like you would in Swift Arrays and values in an object like a Dictionary.

let favouriteNumber = favouriteNumbers[0]
let usernameValue = userObject["username"]

Extract types with simplicity:

let username = String(userObject["username"]) // "Joannis"
let isOnline = Bool(userObject["online"]) // true
let age = Int(userObject["age"]) // 20
let pi = Double(userObject["pi_constant"]) // 3.14

Chain subscripts easily to find results without a hassle as shown underneath:

{
  "users": [
      {
          "username": "Joannis",
          "profile": {
            "firstName": "Joannis",
            "lastName": "Orlandos"
          }
      },
      {
          "username": "Obbut",
          "profile": {
            "firstName": "Robbert",
            "lastName": "Brandsma"
          }
      }
  ]
}
let obbutLastName = String(object["users"][1]["profile"]["lastName"]) // "Brandsma"

Tutorials/info

Tutorials and docs are available among the rest.

关于
434.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9 京公网安备 11010802032778号