Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Making_slices_maps_and_channels (0.49 sec)

  1. src/internal/types/errors/codes.go

    	//
    	// Example:
    	//  var x = make([]int, 3, 2)
    	SwappedMakeArgs
    
    	// InvalidMake occurs when make is called with an unsupported type argument.
    	//
    	// See https://golang.org/ref/spec#Making_slices_maps_and_channels for
    	// information on the types that may be created using make.
    	//
    	// Example:
    	//  var x = make(int)
    	InvalidMake
    
    	// InvalidReal occurs when the real built-in function is called with an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    built-in function <a href="#Length_and_capacity"><code>cap(a)</code></a>.
    </p>
    
    <p>
    A new, initialized slice value for a given element type <code>T</code> is
    made using the built-in function
    <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
    which takes a slice type
    and parameters specifying the length and optionally the capacity.
    A slice created with <code>make</code> always allocates a new, hidden array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    built-in function <a href="#Length_and_capacity"><code>cap(a)</code></a>.
    </p>
    
    <p>
    A new, initialized slice value for a given element type <code>T</code> may be
    made using the built-in function
    <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
    which takes a slice type
    and parameters specifying the length and optionally the capacity.
    A slice created with <code>make</code> always allocates a new, hidden array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//
    	// Example:
    	//  var x = make([]int, 3, 2)
    	SwappedMakeArgs
    
    	// InvalidMake occurs when make is called with an unsupported type argument.
    	//
    	// See https://golang.org/ref/spec#Makingslices_maps_and_channels for
    	// information on the types that may be created using make.
    	//
    	// Example:
    	//  var x = make(int)
    	InvalidMake
    
    	// InvalidReal occurs when the real built-in function is called with an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top