Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Decomposes (0.1 sec)

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

    		slice = s.load(n.Type(), addr)
    	} else {
    		slice = s.expr(sn)
    	}
    
    	// Allocate new blocks
    	grow := s.f.NewBlock(ssa.BlockPlain)
    	assign := s.f.NewBlock(ssa.BlockPlain)
    
    	// Decomposse input slice.
    	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)
    
    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

    to those values. A type may be denoted by a <i>type name</i>, if it has one, which must be
    followed by <a href="#Instantiations">type arguments</a> if the type is generic.
    A type may also be specified using a <i>type literal</i>, which composes a type
    from existing types.
    </p>
    
    <pre class="ebnf">
    Type      = TypeName [ TypeArgs ] | TypeLit | "(" Type ")" .
    TypeName  = identifier | QualifiedIdent .
    TypeArgs  = "[" TypeList [ "," ] "]" .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top