Files
gods/stacks/arraystack/serialization.go
T
2021-04-08 15:19:55 +08:00

39 lines
992 B
Go

// 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 (
"encoding/json"
"github.com/emirpasic/gods/containers"
)
func assertSerializationImplementation() {
var _ containers.JSONSerializer = (*Stack)(nil)
var _ containers.JSONDeserializer = (*Stack)(nil)
var _ json.Marshaler = (*Stack)(nil)
var _ json.Unmarshaler = (*Stack)(nil)
}
// ToJSON outputs the JSON representation of the stack.
func (stack *Stack) ToJSON() ([]byte, error) {
return stack.list.ToJSON()
}
// FromJSON populates the stack from the input JSON representation.
func (stack *Stack) FromJSON(data []byte) error {
return stack.list.FromJSON(data)
}
// @implements json.Unmarshaler
func (stack *Stack) UnmarshalJSON(bytes []byte) error {
return stack.FromJSON(bytes)
}
// @implements json.Marshaler
func (stack *Stack) MarshalJSON() ([]byte, error) {
return stack.ToJSON()
}