mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-23 21:42:23 -05:00
16 lines
515 B
Go
16 lines
515 B
Go
package msgpack
|
|
|
|
import "github.com/shamaton/msgpack/v2/internal/decoding"
|
|
|
|
// UnmarshalAsMap decodes data that is encoded as map format.
|
|
// This is the same thing that StructAsArray sets false.
|
|
func UnmarshalAsMap(data []byte, v interface{}) error {
|
|
return decoding.Decode(data, v, false)
|
|
}
|
|
|
|
// UnmarshalAsArray decodes data that is encoded as array format.
|
|
// This is the same thing that StructAsArray sets true.
|
|
func UnmarshalAsArray(data []byte, v interface{}) error {
|
|
return decoding.Decode(data, v, true)
|
|
}
|