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