1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

refactor(container/gring): mark deprecated, package container/gring will not be maintained in future (#3665)

This commit is contained in:
John Guo 2024-06-27 21:12:51 +08:00 committed by GitHub
parent 31a6ae2a19
commit c3cfc01cf6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 12 additions and 2 deletions

View File

@ -5,7 +5,8 @@
// You can obtain one at https://github.com/gogf/gf.
//
// Package glist provides most commonly used doubly linked list container which also supports concurrent-safe/unsafe switch feature.
// Package glist provides most commonly used doubly linked list container which also supports
// concurrent-safe/unsafe switch feature.
package glist
import (

View File

@ -5,6 +5,8 @@
// You can obtain one at https://github.com/gogf/gf.
// Package gring provides a concurrent-safe/unsafe ring(circular lists).
//
// Deprecated.
package gring
import (
@ -15,6 +17,8 @@ import (
)
// Ring is a struct of ring structure.
//
// Deprecated.
type Ring struct {
mu *rwmutex.RWMutex
ring *ring.Ring // Underlying ring.
@ -31,6 +35,8 @@ type internalRingItem struct {
// New creates and returns a Ring structure of `cap` elements.
// The optional parameter `safe` specifies whether using this structure in concurrent safety,
// which is false in default.
//
// Deprecated.
func New(cap int, safe ...bool) *Ring {
return &Ring{
mu: rwmutex.New(safe...),

View File

@ -16,6 +16,7 @@ import (
"github.com/gogf/gf/v2/util/gconv"
)
// Set is consisted of interface{} items.
type Set struct {
mu rwmutex.RWMutex
data map[interface{}]struct{}

View File

@ -15,6 +15,7 @@ import (
"github.com/gogf/gf/v2/util/gconv"
)
// IntSet is consisted of int items.
type IntSet struct {
mu rwmutex.RWMutex
data map[int]struct{}

View File

@ -17,6 +17,7 @@ import (
"github.com/gogf/gf/v2/util/gconv"
)
// StrSet is consisted of string items.
type StrSet struct {
mu rwmutex.RWMutex
data map[string]struct{}

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
// Package gvar provides an universal variable type, like generics.
// Package gvar provides an universal variable type, like runtime generics.
package gvar
import (