From 47887a0ab016c9b93d76fbcf8c324f7c2f27444b Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Tue, 18 Mar 2025 02:08:51 +0100 Subject: [PATCH] Delete docs/references/plugins/benchmark_Container : VisualElement.md Removing bad named file --- .../benchmark_Container : VisualElement.md | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 docs/references/plugins/benchmark_Container : VisualElement.md diff --git a/docs/references/plugins/benchmark_Container : VisualElement.md b/docs/references/plugins/benchmark_Container : VisualElement.md deleted file mode 100644 index 587ab66..0000000 --- a/docs/references/plugins/benchmark_Container : VisualElement.md +++ /dev/null @@ -1,44 +0,0 @@ -# Container : VisualElement - -## Functions - -|Method|Returns|Description| -|---|---|---| -|[Container:benchmarkContainer](#container-benchmarkcontainer)|Container|Recursively enables benchmarking -|[Container:logContainerBenchmarks](#container-logcontainerbenchmarks)|Container|Recursively logs benchmark statistics -|[Container:stopContainerBenchmark](#container-stopcontainerbenchmark)|Container|Recursively stops benchmarking - - -## Container:benchmarkContainer(methodName) -Enables benchmarking for a container and all its children - -### Parameters -* `methodName` `string` The method to benchmark - -### Returns -* `Container` `self` The container instance - -### Usage - ```lua -container:benchmarkContainer("render") -``` - -## Container:logContainerBenchmarks(methodName) -Logs benchmark statistics for a container and all its children - -### Parameters -* `methodName` `string` The method to log - -### Returns -* `Container` `self` The container instance - -## Container:stopContainerBenchmark(methodName) -Stops benchmarking for a container and all its children - -### Parameters -* `methodName` `string` The method to stop benchmarking - -### Returns -* `Container` `self` The container instance - -