Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
set_lookup_table_value [2011/07/31 21:09] hermann [Outputs] |
set_lookup_table_value [2026/08/28 03:34] (current) hermann Sync from local documentation review |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Set Lookup Table Value ====== | + | ====== Set Lookup Table Value ====== |
| ===== Description ===== | ===== Description ===== | ||
| - | This functor inserts values into a lookup table. If the table is already filled in, it replaces the old values with new values. | + | Inserts a value into a lookup table at a specified key. If the key is already present, its value is replaced. |
| ===== Inputs ===== | ===== Inputs ===== | ||
| - | ^ Name ^ Type ^ Description ^ | + | ^ Name ^ Type ^ Description ^ |
| - | | Table | [[Lookup Table Type|Lookup Table]] | The lookup table where the values will be inserted. | | + | | Table | [[Lookup Table Type]] | Lookup table where the value will be inserted. | |
| - | | Key | [[Double Type|Double]] | A key to the line in which the value will be inserted. | | + | | Key | [[Real Value Type]] | Key of the entry that will be inserted into Table. | |
| - | | Value | [[Double Type|Double]] | Value to be inserted. | | + | | Value | [[Real Value Type]] | Value of the entry that will be inserted into Table. | |
| ===== Optional Inputs ===== | ===== Optional Inputs ===== | ||
| + | |||
| + | None. | ||
| ===== Outputs ===== | ===== Outputs ===== | ||
| - | ^ Name ^ Type ^ Description ^ | + | ^ Name ^ Type ^ Description ^ |
| - | | Updated Table | [[Lookup Table Type|Lookup Table]] | The updated lookup table. | | + | | Updated Table | [[Lookup Table Type]] | The updated lookup table. | |
| ===== Group ===== | ===== Group ===== | ||
| - | [[Functor List#Table | Table]] | + | [[Functor List#Lookup Table | Lookup Table]] |
| ===== Notes ===== | ===== Notes ===== | ||
| - | ===== Internal Name ===== | + | If Key already has a value assigned in Table, that value is replaced by Value. |
| + | |||
| + | This functor was previously known as "UpdateLookupTable"; that name is still accepted for backward compatibility with existing scripts. | ||
| + | |||
| + | ===== Internal Name ===== | ||
| SetLookupTableValue | SetLookupTableValue | ||