Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Length_and_capacity (0.16 sec)

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

    	//
    	// Example:
    	//  var _ = append(1, 2)
    	InvalidAppend
    
    	// InvalidCap occurs when an argument to the cap built-in function is not of
    	// supported type.
    	//
    	// See https://golang.org/ref/spec#Length_and_capacity for information on
    	// which underlying types are supported as arguments to cap and len.
    	//
    	// Example:
    	//  var s = 2
    	//  var x = cap(s)
    	InvalidCap
    
    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. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//
    	// Example:
    	//  var _ = append(1, 2)
    	InvalidAppend
    
    	// InvalidCap occurs when an argument to the cap built-in function is not of
    	// supported type.
    	//
    	// See https://golang.org/ref/spec#Lengthand_capacity for information on
    	// which underlying types are supported as arguments to cap and len.
    	//
    	// Example:
    	//  var s = 2
    	//  var x = cap(s)
    	InvalidCap
    
    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