Filippo Valsorda cbca29dc62 Initial commit and macOS install пре 6 година
..
.gitlab-ci.yml cbca29dc62 Initial commit and macOS install пре 6 година
LICENSE cbca29dc62 Initial commit and macOS install пре 6 година
README.md cbca29dc62 Initial commit and macOS install пре 6 година
bplist.go cbca29dc62 Initial commit and macOS install пре 6 година
bplist_generator.go cbca29dc62 Initial commit and macOS install пре 6 година
bplist_parser.go cbca29dc62 Initial commit and macOS install пре 6 година
decode.go cbca29dc62 Initial commit and macOS install пре 6 година
doc.go cbca29dc62 Initial commit and macOS install пре 6 година
encode.go cbca29dc62 Initial commit and macOS install пре 6 година
fuzz.go cbca29dc62 Initial commit and macOS install пре 6 година
marshal.go cbca29dc62 Initial commit and macOS install пре 6 година
must.go cbca29dc62 Initial commit and macOS install пре 6 година
plist.go cbca29dc62 Initial commit and macOS install пре 6 година
plist_types.go cbca29dc62 Initial commit and macOS install пре 6 година
text_generator.go cbca29dc62 Initial commit and macOS install пре 6 година
text_parser.go cbca29dc62 Initial commit and macOS install пре 6 година
text_tables.go cbca29dc62 Initial commit and macOS install пре 6 година
typeinfo.go cbca29dc62 Initial commit and macOS install пре 6 година
unmarshal.go cbca29dc62 Initial commit and macOS install пре 6 година
util.go cbca29dc62 Initial commit and macOS install пре 6 година
xml_generator.go cbca29dc62 Initial commit and macOS install пре 6 година
xml_parser.go cbca29dc62 Initial commit and macOS install пре 6 година
zerocopy.go cbca29dc62 Initial commit and macOS install пре 6 година
zerocopy_appengine.go cbca29dc62 Initial commit and macOS install пре 6 година

README.md

plist - A pure Go property list transcoder coverage report

INSTALL

$ go get howett.net/plist

FEATURES

  • Supports encoding/decoding property lists (Apple XML, Apple Binary, OpenStep and GNUStep) from/to arbitrary Go types

USE

package main
import (
	"howett.net/plist"
	"os"
)
func main() {
	encoder := plist.NewEncoder(os.Stdout)
	encoder.Encode(map[string]string{"hello": "world"})
}