Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for supply (0.49 sec)

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

    // reflection type descriptor.
    func (s *state) reflectType(typ *types.Type) *ssa.Value {
    	// TODO(mdempsky): Make this Fatalf under Unified IR; frontend needs
    	// to supply RType expressions.
    	lsym := reflectdata.TypeLinksym(typ)
    	return s.entryNewValue1A(ssa.OpAddr, types.NewPtr(types.Types[types.TUINT8]), lsym, s.sb)
    }
    
    func dumpSourcesColumn(writer *ssa.HTMLWriter, fn *ir.Func) {
    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>
    func apply[S ~[]E, E any](s S, f func(E) E) S { … }
    
    f0 := apply[]                  // illegal: type argument list cannot be empty
    f1 := apply[[]int]             // type argument for S explicitly provided, type argument for E inferred
    f2 := apply[[]string, string]  // both type arguments explicitly provided
    
    var bytes []byte
    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