package stackitem
type rc struct {
count int
}
func (r *rc) IncRC() int {
r.count++
return r.count
func (r *rc) DecRC() int {
r.count--