Logmanager documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Float

Block “float” is used to define a constant of the float type.

Float values can be used in comparisons in logic operations.

In case a float value is stored in a database, it is not directly stored under a specified key name which always stores string representation, but a special key name is created with value representation. Such key name is created as original_key@float. Therefore, for accessing float value retrieved from database, float key name has to be used.

Block XML representation

XML representation of math_float block

<xml xmlns="http://www.w3.org/1999/xhtml">
  <block type="math_float">
    <field name="NUM">1.1</field>
  </block>
</xml>

Example of visual representation

Example of "float" block

Example of “float” block

Example of stored representation

{
  "my_value": "1.1",
  "my_value@float": {
    "value": 1.1
  }
}