forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray.h
26 lines (15 loc) · 803 Bytes
/
array.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#ifndef _ARRAY_H_
#define _ARRAY_H_
// A 32 dimension array with at least 2 elements in each dimension requires
// 4gb of memory. Limit the maximum number of dimensions to a value that
// requires 4gb of memory.
// If you make this bigger, you need to make MAX_CLASSNAME_LENGTH bigger too.
#define MAX_RANK 32
class MethodTable;
Stub *GenerateArrayOpStub(ArrayMethodDesc* pMD);
BOOL IsImplicitInterfaceOfSZArray(MethodTable *pIntfMT);
MethodDesc* GetActualImplementationForArrayGenericIListOrIReadOnlyListMethod(MethodDesc *pItfcMeth, TypeHandle theT);
CorElementType GetNormalizedIntegralArrayElementType(CorElementType elementType);
#endif// _ARRAY_H_