MCPcopy Create free account
hub / github.com/URLab-Sim/UnrealRoboticsLab / GetAllOps

Function GetAllOps

Source/URLab/Private/Bridge/OpRegistry.cpp:76–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76TArray<FOpDecl> GetAllOps()
77{
78 FRWScopeLock Lock(MapLock(), SLT_ReadOnly);
79 TArray<FOpDecl> Out;
80 Out.Reserve(Map().Num());
81 for (const TPair<FString, FOpDecl>& Kv : Map())
82 {
83 Out.Add(Kv.Value);
84 }
85 return Out;
86}
87
88bool IsEditorOnlyOp(const FString& OpName)
89{

Callers 1

HandleMetaMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected