20 lines
455 B
Go
20 lines
455 B
Go
|
// Package bencode implements bencoding of data as defined in BEP 3 using
|
||
|
// type assertion over reflection for performance.
|
||
|
package bencode
|
||
|
|
||
|
// Dict represents a bencode dictionary.
|
||
|
type Dict map[string]interface{}
|
||
|
|
||
|
// NewDict allocates the memory for a Dict.
|
||
|
func NewDict() Dict {
|
||
|
return make(Dict)
|
||
|
}
|
||
|
|
||
|
// List represents a bencode list.
|
||
|
type List []interface{}
|
||
|
|
||
|
// NewList allocates the memory for a List.
|
||
|
func NewList() List {
|
||
|
return make(List, 0)
|
||
|
}
|