- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for mapRType (0.11 sec)
-
src/test/java/org/codelibs/core/lang/GenericsUtilTest.java
final Method m1 = MapType.class.getMethod("mapOfStringToObject"); final Type t1 = m1.getGenericReturnType(); assertThat(GenericsUtil.isTypeOf(t1, Map.class), is(true)); assertThat(GenericsUtil.getKeyTypeOfMap(t1), is(sameClass(String.class))); assertThat(GenericsUtil.getValueTypeOfMap(t1), is(sameClass(Object.class))); final Method m2 = MapType.class.getMethod("mapOfClassToString");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.5K bytes - Viewed (0) -
src/cmd/cgo/ast.go
} f.walk(n.Params, ctxParam, visit) if n.Results != nil { f.walk(n.Results, ctxParam, visit) } case *ast.InterfaceType: f.walk(n.Methods, ctxField, visit) case *ast.MapType: f.walk(&n.Key, ctxType, visit) f.walk(&n.Value, ctxType, visit) case *ast.ChanType: f.walk(&n.Value, ctxType, visit) case *ast.BadStmt: case *ast.DeclStmt: f.walk(n.Decl, ctxDecl, visit)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
// type that contains a pointer. if unionWithPointer[t.X] { return true } return p.hasPointer(f, t.X, false) case *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType: return true case *ast.Ident: // TODO: Handle types defined within function. for _, d := range p.Decl { gd, ok := d.(*ast.GenDecl) if !ok || gd.Tok != token.TYPE {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
doc/go1.17_spec.html
</p> <pre class="ebnf"> Type = TypeName | TypeLit | "(" Type ")" . TypeName = identifier | QualifiedIdent . TypeLit = ArrayType | StructType | PointerType | FunctionType | InterfaceType | SliceType | MapType | ChannelType . </pre> <p> The language <a href="#Predeclared_identifiers">predeclares</a> certain type names. Others are introduced with <a href="#Type_declarations">type declarations</a>.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
doc/go_spec.html
TypeName = identifier | QualifiedIdent . TypeArgs = "[" TypeList [ "," ] "]" . TypeList = Type { "," Type } . TypeLit = ArrayType | StructType | PointerType | FunctionType | InterfaceType | SliceType | MapType | ChannelType . </pre> <p> The language <a href="#Predeclared_identifiers">predeclares</a> certain type names. Others are introduced with <a href="#Type_declarations">type declarations</a>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (linux-386), const MAP_PRIVATE = 2 pkg syscall (linux-386), const MAP_SHARED = 1 pkg syscall (linux-386), const MAP_STACK = 131072 pkg syscall (linux-386), const MAP_TYPE = 15 pkg syscall (linux-386), const MCL_CURRENT = 1 pkg syscall (linux-386), const MCL_FUTURE = 2 pkg syscall (linux-386), const MNT_DETACH = 2 pkg syscall (linux-386), const MNT_EXPIRE = 4
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0)