Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for AssignableTo (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. schema/field.go

    		} else {
    			reflectV := reflect.ValueOf(v)
    			// Optimal value type acquisition for v
    			reflectValType := reflectV.Type()
    
    			if reflectValType.AssignableTo(field.FieldType) {
    				if reflectV.Kind() == reflect.Ptr && reflectV.Elem().Kind() == reflect.Ptr {
    					reflectV = reflect.Indirect(reflectV)
    				}
    				field.ReflectValueOf(ctx, value).Set(reflectV)
    				return
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sat Nov 22 03:14:36 GMT 2025
    - 32.2K bytes
    - Click Count (0)
  2. api/go1.5.txt

    pkg go/types, const UntypedRune BasicKind
    pkg go/types, const UntypedString = 24
    pkg go/types, const UntypedString BasicKind
    pkg go/types, func AssertableTo(*Interface, Type) bool
    pkg go/types, func AssignableTo(Type, Type) bool
    pkg go/types, func Comparable(Type) bool
    pkg go/types, func ConvertibleTo(Type, Type) bool
    pkg go/types, func DefPredeclaredTestFuncs()
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Click Count (0)
  3. api/go1.txt

    pkg reflect, type StructField struct, Tag StructTag
    pkg reflect, type StructField struct, Type Type
    pkg reflect, type StructTag string
    pkg reflect, type Type interface, Align() int
    pkg reflect, type Type interface, AssignableTo(Type) bool
    pkg reflect, type Type interface, Bits() int
    pkg reflect, type Type interface, ChanDir() ChanDir
    pkg reflect, type Type interface, Elem() Type
    pkg reflect, type Type interface, Field(int) StructField
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
Back to Top