You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scrutiny/vendor/howett.net/plist
packagr-io-beta b6ca94f786
(v0.1.1) Automated packaging of release by Packagr
4 years ago
..
.gitlab-ci.yml (v0.1.1) Automated packaging of release by Packagr 4 years ago
LICENSE (v0.1.1) Automated packaging of release by Packagr 4 years ago
README.md (v0.1.1) Automated packaging of release by Packagr 4 years ago
bplist.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
bplist_generator.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
bplist_parser.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
decode.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
doc.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
encode.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
fuzz.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
go.mod (v0.1.1) Automated packaging of release by Packagr 4 years ago
marshal.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
must.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
plist.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
plist_types.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
text_generator.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
text_parser.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
text_tables.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
typeinfo.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
unmarshal.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
util.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
xml_generator.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
xml_parser.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
zerocopy.go (v0.1.1) Automated packaging of release by Packagr 4 years ago
zerocopy_appengine.go (v0.1.1) Automated packaging of release by Packagr 4 years ago

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"})
}