Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DDDDD (0.03 sec)

  1. src/text/tabwriter/tabwriter_test.go

    			"aaa\tbbbb\n",
    
    		"本.......b.......c\n" +
    			"aa......本本本.....cccc....ddddd\n" +
    			"aaa.....bbbb\n",
    	},
    
    	{
    		"12a",
    		8, 0, 1, ' ', AlignRight,
    		"a\tè\tc\t\n" +
    			"aa\tèèè\tcccc\tddddd\t\n" +
    			"aaa\tèèèè\t\n",
    
    		"       a       è       c\n" +
    			"      aa     èèè    cccc   ddddd\n" +
    			"     aaa    èèèè\n",
    	},
    
    	{
    		"12b",
    		2, 0, 0, ' ', 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/strconv/ftoa.go

    	case exp < 100:
    		dst = append(dst, byte(exp/10)+'0', byte(exp%10)+'0')
    	default:
    		dst = append(dst, byte(exp/100)+'0', byte(exp/10)%10+'0', byte(exp%10)+'0')
    	}
    
    	return dst
    }
    
    // %f: -ddddddd.ddddd
    func fmtF(dst []byte, neg bool, d decimalSlice, prec int) []byte {
    	// sign
    	if neg {
    		dst = append(dst, '-')
    	}
    
    	// integer, padded with zeros as needed.
    	if d.dp > 0 {
    		m := min(d.nd, d.dp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top