Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for __elements (0.73 sec)

  1. doc/go_spec.html

    </pre>
    
    <p>
    The length of an array literal is the length specified in the literal type.
    If fewer elements than the length are provided in the literal, the missing
    elements are set to the zero value for the array element type.
    It is an error to provide elements with index values outside the index range
    of the array. The notation <code>...</code> specifies an array length equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. ChangeLog.md

    #### Performance Improvements
    
    - [`KT-65560`](https://youtrack.jetbrains.com/issue/KT-65560) K2: Anaysis API: ContextCollector triggers redundant resolution in the case of file elements
    - [`KT-64987`](https://youtrack.jetbrains.com/issue/KT-64987) Analysis API: 50GB memory allocation on creating empty kotlinx.collections.immutable.persistentMapOf
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	p := s.newValue1(ssa.OpSlicePtr, pt, slice)
    	l := s.newValue1(ssa.OpSliceLen, types.Types[types.TINT], slice)
    	c := s.newValue1(ssa.OpSliceCap, types.Types[types.TINT], slice)
    
    	// Add number of new elements to length.
    	nargs := s.constInt(types.Types[types.TINT], int64(len(n.Args)-1))
    	l = s.newValue2(s.ssaOp(ir.OADD, types.Types[types.TINT]), types.Types[types.TINT], l, nargs)
    
    	// Decide if we need to grow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top