Implements json.Marshaler and json.Unmarshaler interfaces

This commit is contained in:
Emir Pasic
2022-04-12 04:31:44 +02:00
parent b5735bcc4d
commit 1f0b87f0e1
35 changed files with 183 additions and 104 deletions
+2 -6
View File
@@ -5,16 +5,12 @@
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.
@@ -27,12 +23,12 @@ func (stack *Stack) FromJSON(data []byte) error {
return stack.list.FromJSON(data)
}
// @implements json.Unmarshaler
// UnmarshalJSON @implements json.Unmarshaler
func (stack *Stack) UnmarshalJSON(bytes []byte) error {
return stack.FromJSON(bytes)
}
// @implements json.Marshaler
// MarshalJSON @implements json.Marshaler
func (stack *Stack) MarshalJSON() ([]byte, error) {
return stack.ToJSON()
}