Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for printr (0.41 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    		// No pointer arithmetic necessary.
    		return ptr, rlen, rcap
    	}
    
    	// Calculate the base pointer (rptr) for the new slice.
    	//
    	// Generate the following code assuming that indexes are in bounds.
    	// The masking is to make sure that we don't generate a slice
    	// that points to the next object in memory. We cannot just set
    	// the pointer to nil because then we would create a nil slice or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    [...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
    [][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
    [][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
    map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top