Commit 72974229 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent a8679c6d
...@@ -74,7 +74,7 @@ func (M *RangedMap) Get_(k Key) (v VALUE, ok bool) { ...@@ -74,7 +74,7 @@ func (M *RangedMap) Get_(k Key) (v VALUE, ok bool) {
if traceRangeMap { if traceRangeMap {
fmt.Printf("\n\nGet_:\n") fmt.Printf("\n\nGet_:\n")
fmt.Printf(" M: %s\n", M) fmt.Printf(" M: %s\n", M)
fmt.Printf(" k: %s\n", k) fmt.Printf(" k: %s\n", KStr(k))
defer func() { defer func() {
fmt.Printf("->·: %v, %t\n", v, ok) fmt.Printf("->·: %v, %t\n", v, ok)
}() }()
......
...@@ -76,7 +76,7 @@ func (M *_RangedMap_str) Get_(k Key) (v string, ok bool) { ...@@ -76,7 +76,7 @@ func (M *_RangedMap_str) Get_(k Key) (v string, ok bool) {
if trace_RangedMap_str { if trace_RangedMap_str {
fmt.Printf("\n\nGet_:\n") fmt.Printf("\n\nGet_:\n")
fmt.Printf(" M: %s\n", M) fmt.Printf(" M: %s\n", M)
fmt.Printf(" k: %s\n", k) fmt.Printf(" k: %s\n", KStr(k))
defer func() { defer func() {
fmt.Printf("->·: %v, %t\n", v, ok) fmt.Printf("->·: %v, %t\n", v, ok)
}() }()
......
...@@ -76,7 +76,7 @@ func (M *_RangedMap_void) Get_(k Key) (v void, ok bool) { ...@@ -76,7 +76,7 @@ func (M *_RangedMap_void) Get_(k Key) (v void, ok bool) {
if trace_RangedMap_void { if trace_RangedMap_void {
fmt.Printf("\n\nGet_:\n") fmt.Printf("\n\nGet_:\n")
fmt.Printf(" M: %s\n", M) fmt.Printf(" M: %s\n", M)
fmt.Printf(" k: %s\n", k) fmt.Printf(" k: %s\n", KStr(k))
defer func() { defer func() {
fmt.Printf("->·: %v, %t\n", v, ok) fmt.Printf("->·: %v, %t\n", v, ok)
}() }()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment