Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TypeParamType (0.17 sec)

  1. src/cmd/compile/internal/typecheck/iexport.go

    //             Name      stringOff
    //             Signature Signature
    //         }
    //     }
    //
    //     // Reference to a type param declaration
    //     type TypeParamType struct {
    //         Tag     itag // typeParamType
    //         Name    stringOff
    //         PkgPath stringOff
    //     }
    //
    //     // Instantiation of a generic type (like List[T2] or List[int])
    //     type InstanceType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    func Lists() cel.EnvOption {
    	return cel.Lib(listsLib)
    }
    
    var listsLib = &lists{}
    
    type lists struct{}
    
    func (*lists) LibraryName() string {
    	return "k8s.lists"
    }
    
    var paramA = cel.TypeParamType("A")
    
    // CEL typeParams can be used to constraint to a specific trait (e.g. traits.ComparableType) if the 1st operand is the type to constrain.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top