Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GoStringer (0.13 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    	return printUint16(uint16(c))
    }
    
    // GoString implements fmt.GoStringer.GoString.
    func (c Class) GoString() string {
    	if n, ok := classNames[c]; ok {
    		return "dnsmessage." + n
    	}
    	return printUint16(uint16(c))
    }
    
    // An OpCode is a DNS operation code.
    type OpCode uint16
    
    // GoString implements fmt.GoStringer.GoString.
    func (o OpCode) GoString() string {
    	return printUint16(uint16(o))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%v", renamedComplex64(3 + 4i), "(3+4i)"},
    	{"%v", renamedComplex128(4 - 3i), "(4-3i)"},
    
    	// Formatter
    	{"%x", F(1), "<x=F(1)>"},
    	{"%x", G(2), "2"},
    	{"%+v", S{F(4), G(5)}, "{F:<v=F(4)> G:5}"},
    
    	// GoStringer
    	{"%#v", G(6), "GoString(6)"},
    	{"%#v", S{F(7), G(8)}, "fmt_test.S{F:<v=F(7)>, G:GoString(8)}"},
    
    	// %T
    	{"%T", byte(0), "uint8"},
    	{"%T", reflect.ValueOf(nil), "reflect.Value"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/time/format.go

    			wid = 9
    		}
    		buf = appendInt(buf, int(m1), wid)
    		buf = append(buf, '.')
    		buf = appendInt(buf, int(m2), 9)
    		s += string(buf)
    	}
    	return s
    }
    
    // GoString implements [fmt.GoStringer] and formats t to be printed in Go source
    // code.
    func (t Time) GoString() string {
    	abs := t.abs()
    	year, month, day, _ := absDate(abs, true)
    	hour, minute, second := absClock(abs)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top