gods/stacks/arraystack/serialization.go

35 lines
922 B
Go
Raw Normal View History

2017-03-06 02:49:30 +00:00
// Copyright (c) 2015, Emir Pasic. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package arraystack
import (
"github.com/emirpasic/gods/containers"
)
2017-03-06 02:49:30 +00:00
func assertSerializationImplementation() {
var _ containers.JSONSerializer = (*Stack)(nil)
var _ containers.JSONDeserializer = (*Stack)(nil)
}
// ToJSON outputs the JSON representation of the stack.
2017-03-06 02:49:30 +00:00
func (stack *Stack) ToJSON() ([]byte, error) {
return stack.list.ToJSON()
}
// FromJSON populates the stack from the input JSON representation.
2017-03-06 02:49:30 +00:00
func (stack *Stack) FromJSON(data []byte) error {
return stack.list.FromJSON(data)
}
// UnmarshalJSON @implements json.Unmarshaler
func (stack *Stack) UnmarshalJSON(bytes []byte) error {
return stack.FromJSON(bytes)
}
// MarshalJSON @implements json.Marshaler
func (stack *Stack) MarshalJSON() ([]byte, error) {
return stack.ToJSON()
}