Value get current value
()
| 51 | |
| 52 | //Value get current value |
| 53 | func (counter *Counter) Value() int64 { |
| 54 | return atomic.LoadInt64(&counter.value) |
| 55 | } |
| 56 | |
| 57 | //GetByJSONPointer returns subdata of json using json pointer |
| 58 | func GetByJSONPointer(inData interface{}, key string) (interface{}, error) { |