- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for NewJSON (0.09 sec)
-
internal/grid/types.go
} // JSON is a wrapper around a T object that can be serialized. // There is an internal value type JSON[T any] struct { p *JSONPool[T] val *T } // NewJSON returns a new JSONPool. // No initial value is set. func (p *JSONPool[T]) NewJSON() *JSON[T] { var j JSON[T] j.p = p return &j } // NewJSONWith returns a new JSON with the provided value. func (p *JSONPool[T]) NewJSONWith(val *T) *JSON[T] {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 15.5K bytes - Viewed (0)