terraria-cpp2il v1.4.4.9
Terraria mobile dump, with CallAnalysis (see source code). Dump with reconstucted method: https://infinitynichto.github.io/terraria-cpp2il-methodrecon
Loading...
Searching...
No Matches
Set.cs
Go to the documentation of this file.
1using System;
5
6namespace System.Linq
7{
8 [global::Cpp2ILInjected.Token(Token = "0x2000023")]
9 internal class Set<TElement>
10 {
11 [global::Cpp2ILInjected.Token(Token = "0x600010E")]
12 [global::Cpp2ILInjected.Address(RVA = "0x18646A8", Offset = "0x18646A8", Length = "0xB8")]
13 [global::Cpp2ILInjected.CallAnalysis.DeduplicatedMethod]
14 [global::Cpp2ILInjected.CallAnalysis.ContainsUnimplementedInstructions]
15 [global::Cpp2ILInjected.CallAnalysis.CallerCount(Count = 0)]
16 [global::Cpp2ILInjected.CallAnalysis.Calls(Type = typeof(object), Member = ".ctor", ReturnType = typeof(void))]
17 [global::Cpp2ILInjected.CallAnalysis.CallsUnknownMethods(Count = 4)]
19 {
20 throw null;
21 }
22
23 [global::Cpp2ILInjected.Token(Token = "0x600010F")]
24 [global::Cpp2ILInjected.Address(RVA = "0x1864760", Offset = "0x1864760", Length = "0x2C")]
25 [global::Cpp2ILInjected.CallAnalysis.DeduplicatedMethod]
26 [global::Cpp2ILInjected.CallAnalysis.ContainsUnimplementedInstructions]
27 [global::Cpp2ILInjected.CallAnalysis.CallerCount(Count = 0)]
28 public bool Add(TElement value)
29 {
30 throw null;
31 }
32
33 [global::Cpp2ILInjected.Token(Token = "0x6000110")]
34 [global::Cpp2ILInjected.Address(RVA = "0x186478C", Offset = "0x186478C", Length = "0x1E4")]
35 [global::Cpp2ILInjected.CallAnalysis.DeduplicatedMethod]
36 [global::Cpp2ILInjected.CallAnalysis.ContainsUnimplementedInstructions]
37 [global::Cpp2ILInjected.CallAnalysis.CallerCount(Count = 0)]
38 [global::Cpp2ILInjected.CallAnalysis.CallsUnknownMethods(Count = 2)]
39 private bool Find(TElement value, bool add)
40 {
41 throw null;
42 }
43
44 [global::Cpp2ILInjected.Token(Token = "0x6000111")]
45 [global::Cpp2ILInjected.Address(RVA = "0x1864970", Offset = "0x1864970", Length = "0x12C")]
46 [global::Cpp2ILInjected.CallAnalysis.DeduplicatedMethod]
47 [global::Cpp2ILInjected.CallAnalysis.ContainsUnimplementedInstructions]
48 [global::Cpp2ILInjected.CallAnalysis.CallerCount(Count = 0)]
49 [global::Cpp2ILInjected.CallAnalysis.Calls(Type = typeof(Array), Member = "Copy", MemberParameters = new object[]
50 {
52 typeof(int),
54 typeof(int),
55 typeof(int)
56 }, ReturnType = typeof(void))]
57 [global::Cpp2ILInjected.CallAnalysis.CallsUnknownMethods(Count = 7)]
58 private void Resize()
59 {
60 throw null;
61 }
62
63 [global::Cpp2ILInjected.Token(Token = "0x6000112")]
64 [global::Cpp2ILInjected.Address(RVA = "0x1864A9C", Offset = "0x1864A9C", Length = "0xA0")]
65 [global::Cpp2ILInjected.CallAnalysis.DeduplicatedMethod]
66 [global::Cpp2ILInjected.CallAnalysis.ContainsUnimplementedInstructions]
67 [global::Cpp2ILInjected.CallAnalysis.CallerCount(Count = 0)]
68 [global::Cpp2ILInjected.CallAnalysis.CallsUnknownMethods(Count = 2)]
69 internal int InternalGetHashCode(TElement value)
70 {
71 throw null;
72 }
73
74 [global::Cpp2ILInjected.Token(Token = "0x4000086")]
75 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
76 private int[] buckets;
77
78 [global::Cpp2ILInjected.Token(Token = "0x4000087")]
79 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
81
82 [global::Cpp2ILInjected.Token(Token = "0x4000088")]
83 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
84 private int count;
85
86 [global::Cpp2ILInjected.Token(Token = "0x4000089")]
87 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
88 private int freeList;
89
90 [global::Cpp2ILInjected.Token(Token = "0x400008A")]
91 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
93
94 [global::Cpp2ILInjected.Token(Token = "0x2000024")]
95 internal struct Slot
96 {
97 [global::Cpp2ILInjected.Token(Token = "0x400008B")]
98 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
99 internal int hashCode;
100
101 [global::Cpp2ILInjected.Token(Token = "0x400008C")]
102 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
103 internal TElement value;
104
105 [global::Cpp2ILInjected.Token(Token = "0x400008D")]
106 [global::Cpp2ILInjected.FieldOffset(Offset = "0x0")]
107 internal int next;
108 }
109 }
110}
class f__AnonymousType0<< Count > j__TPar
bool Find(TElement value, bool add)
Definition Set.cs:39
Set(IEqualityComparer< TElement > comparer)
Definition Set.cs:18
void Resize()
Definition Set.cs:58
int count
Definition Set.cs:84
int[] buckets
Definition Set.cs:76
bool Add(TElement value)
Definition Set.cs:28
Set< TElement >.Slot[] slots
Definition Set.cs:80
int InternalGetHashCode(TElement value)
Definition Set.cs:69
int freeList
Definition Set.cs:88
IEqualityComparer< TElement > comparer
Definition Set.cs:92
TElement value
Definition Set.cs:103