MCPcopy Create free account
hub / github.com/crazytuzi/UnrealCSharp / GetEnumerator

Function GetEnumerator

Script/UE/CoreUObject/TArray.cs:42–48  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

40 public override int GetHashCode() => (int)GarbageCollectionHandle;
41
42 public IEnumerator<T> GetEnumerator()
43 {
44 for (var Index = 0; Index < Num(); Index++)
45 {
46 yield return this[Index];
47 }
48 }
49
50 IEnumerator IEnumerable.GetEnumerator()
51 {

Callers

nothing calls this directly

Calls 1

NumFunction · 0.70

Tested by

no test coverage detected