- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for NewJSON (0.06 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 Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 15.5K bytes - Viewed (0)