{"id":"compute.profiling--floatTrace","name":"floatTrace","owner":"yeho","package":"compute.profiling","kind":"thing","signature":"external thing floatTrace","description":"A float trace record carrying label, origin, values, note.","context":"Collect and describe compute timing, work, and profiling records.","parameters":[],"returns":"void","members":[{"name":"label","kind":"field","type":"text","description":"Stores label as text.","signature":"text label","tags":["thing","field","compute.profiling"],"updated":"2026-09-09"},{"name":"origin","kind":"field","type":"text","description":"Stores origin as text.","signature":"text origin","tags":["thing","field","compute.profiling"],"updated":"2026-09-09"},{"name":"values","kind":"field","type":"list of float","description":"Stores values as list of float.","signature":"list of float values","tags":["thing","field","compute.profiling"],"updated":"2026-09-09"},{"name":"note","kind":"field","type":"text","description":"Stores note as text.","signature":"text note","tags":["thing","field","compute.profiling"],"updated":"2026-09-09"},{"name":"floatTrace","kind":"constructor","parameters":[{"name":"label","type":"text","description":"Label."},{"name":"origin","type":"text","description":"Origin."},{"name":"values","type":"list of float","description":"Values."},{"name":"note","type":"text","description":"Note."}],"returns":"void","signature":"floatTrace(text label, text origin, list of float values, text note)","description":"Float trace.","tags":["thing","constructor","compute.profiling"],"updated":"2026-09-09"},{"name":"HasValues","kind":"method","parameters":[],"returns":"bool","signature":"HasValues() returns bool","description":"Has values.","tags":["thing","method","compute.profiling"],"exampleId":"method-HasValues-5","updated":"2026-09-09"},{"name":"Count","kind":"method","parameters":[],"returns":"int","signature":"Count() returns int","description":"Count.","tags":["thing","method","compute.profiling"],"exampleId":"method-Count-6","updated":"2026-09-09"},{"name":"FirstValue","kind":"method","parameters":[],"returns":"float","signature":"FirstValue() returns float","description":"First value.","tags":["thing","method","compute.profiling"],"exampleId":"method-FirstValue-7","updated":"2026-09-09"},{"name":"LastValue","kind":"method","parameters":[],"returns":"float","signature":"LastValue() returns float","description":"Last value.","tags":["thing","method","compute.profiling"],"exampleId":"method-LastValue-8","updated":"2026-09-09"},{"name":"HasNaN","kind":"method","parameters":[],"returns":"bool","signature":"HasNaN() returns bool","description":"Has na n.","tags":["thing","method","compute.profiling"],"exampleId":"method-HasNaN-9","updated":"2026-09-09"},{"name":"HasPositiveInfinity","kind":"method","parameters":[],"returns":"bool","signature":"HasPositiveInfinity() returns bool","description":"Has positive infinity.","tags":["thing","method","compute.profiling"],"exampleId":"method-HasPositiveInfinity-10","updated":"2026-09-09"},{"name":"HasNegativeInfinity","kind":"method","parameters":[],"returns":"bool","signature":"HasNegativeInfinity() returns bool","description":"Has negative infinity.","tags":["thing","method","compute.profiling"],"exampleId":"method-HasNegativeInfinity-11","updated":"2026-09-09"},{"name":"HasNonFinite","kind":"method","parameters":[],"returns":"bool","signature":"HasNonFinite() returns bool","description":"Has non finite.","tags":["thing","method","compute.profiling"],"exampleId":"method-HasNonFinite-12","updated":"2026-09-09"},{"name":"NonFiniteCount","kind":"method","parameters":[],"returns":"int","signature":"NonFiniteCount() returns int","description":"Non finite count.","tags":["thing","method","compute.profiling"],"exampleId":"method-NonFiniteCount-13","updated":"2026-09-09"},{"name":"Minimum","kind":"method","parameters":[],"returns":"float","signature":"Minimum() returns float","description":"Minimum.","tags":["thing","method","compute.profiling"],"exampleId":"method-Minimum-14","updated":"2026-09-09"},{"name":"Maximum","kind":"method","parameters":[],"returns":"float","signature":"Maximum() returns float","description":"Maximum.","tags":["thing","method","compute.profiling"],"exampleId":"method-Maximum-15","updated":"2026-09-09"},{"name":"Span","kind":"method","parameters":[],"returns":"float","signature":"Span() returns float","description":"Span.","tags":["thing","method","compute.profiling"],"exampleId":"method-Span-16","updated":"2026-09-09"},{"name":"Describe","kind":"method","parameters":[],"returns":"text","signature":"Describe() returns text","description":"Describe.","tags":["thing","method","compute.profiling"],"exampleId":"method-Describe-17","updated":"2026-09-09"}],"tags":["compute","compute.profiling","cpu","method","profiling","source-example","thing","yeho"],"updated":"2026-09-09","source":{"repository":"yeho","path":"packages/compute/profiling/profiling.yh","line":246,"sha256":"067dd2a8894dc02cf9197cfff4d83258fae401d7f03ae44b9f38d3c68bed1e7b"},"status":"source-declared","notes":["Package presence and a declaration do not establish support on every host. Host services need their platform and lifecycle setup."],"examples":[{"id":"usage","title":"Use floatTrace","description":"A complete small caller. Values are illustrative; check the returned result and package requirements before connecting live resources.","code":"using compute.profiling\n\n// Collect and describe compute timing, work, and profiling records.\nfloatTrace sample = floatTrace(\"Player health\", \"origin\", [], \"note\")\nConsole.Log(Text.From(sample.label))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","source-example"],"verification":"type checked","run":"cpu-oracle","sha256":"8a174312cd97e5d3d43068985adaa0ecdd87cfb8f0b765ccb04a54f65f711861","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-HasValues-5","title":"floatTrace.HasValues","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Has values.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nbool result = instance.HasValues()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"7841bc3d8c36dcde037235614e4c765d3d9657ed32329a95a36fd8626cc0269f","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Count-6","title":"floatTrace.Count","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Count.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nint result = instance.Count()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"3550b52d32bb23e5f6102e43f580c2b046e7c084595edcaae3e5c9b7fc003021","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-FirstValue-7","title":"floatTrace.FirstValue","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// First value.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nfloat result = instance.FirstValue()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"0628cd8fc4d91d0a8d3e5590737e8f1c68387db26203af1b25dcbf01ab66b05f","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-LastValue-8","title":"floatTrace.LastValue","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Last value.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nfloat result = instance.LastValue()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"dc0ef8297c9d482a7184e5473b4df5ef7df182b3352c641869de440e01d0e80f","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-HasNaN-9","title":"floatTrace.HasNaN","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Has na n.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nbool result = instance.HasNaN()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"937c30cb72dfb05f81aa490a7fd2f71bda068c95d41506a3246c2b8eaff805b0","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-HasPositiveInfinity-10","title":"floatTrace.HasPositiveInfinity","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Has positive infinity.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nbool result = instance.HasPositiveInfinity()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"f59f7af68fd8b8d74e2cd60c15d0339bde3871b8a16b480e9503b59b892d1442","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-HasNegativeInfinity-11","title":"floatTrace.HasNegativeInfinity","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Has negative infinity.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nbool result = instance.HasNegativeInfinity()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"bb1e2a1c4b9d4ce39f0846d3523119741ffcab1c1b6e7dbf16e636dc37070791","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-HasNonFinite-12","title":"floatTrace.HasNonFinite","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Has non finite.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nbool result = instance.HasNonFinite()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"123e7a586c6ef62c74d95c7ac1f99c85a82e00f2480e7b5e16e8875b90039c43","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-NonFiniteCount-13","title":"floatTrace.NonFiniteCount","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Non finite count.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nint result = instance.NonFiniteCount()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"95021c81cd0febf9884d960d59ff7323bd73335d9bb6b3d9b71891a97105985a","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Minimum-14","title":"floatTrace.Minimum","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Minimum.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nfloat result = instance.Minimum()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"905604c9cab26999d9cf5dfbadf528948d631c1516bed2c120022814659c4d94","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Maximum-15","title":"floatTrace.Maximum","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Maximum.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nfloat result = instance.Maximum()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"697736eed2001f70e456203ab571b294ea7b362316c9b92ef877251d25df56c8","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Span-16","title":"floatTrace.Span","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Span.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\nfloat result = instance.Span()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"8f03bcad0b77a9299e5ec9441d0120d743722f302084d5850821b51c4ef5be97","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Describe-17","title":"floatTrace.Describe","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.profiling\n\n// Describe.\nfloatTrace instance = floatTrace(\"Player health\", \"origin\", [], \"note\")\ntext result = instance.Describe()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_profiling__floattrace\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"3d632dd09bbd1c3fdcbac4649b0b067610042effdaff56a3c5c08bf50f077a84","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null}],"searchTerms":["label","origin","values","note","floatTrace","HasValues","Count","FirstValue","LastValue","HasNaN","HasPositiveInfinity","HasNegativeInfinity","HasNonFinite","NonFiniteCount","Minimum","Maximum","Span","Describe"],"url":"https://demonhunterlabs.com/academy/api?item=compute.profiling--floatTrace","json":"https://demonhunterlabs.com/reference/items/compute.profiling--floatTrace.json","markdown":"https://demonhunterlabs.com/reference/text/compute.profiling--floatTrace.md"}
