Modifications pour le document Mission Director Guide

Modifié par Klaus Meyer le 2025/03/31 16:39

Depuis la version 32982.1
modifié par Owen Lake
sur 2025/03/19 13:49
Commentaire de modification : Il n'y a aucun commentaire pour cette version
À la version 32981.5
modifié par Owen Lake
sur 2025/03/19 13:48
Commentaire de modification : Il n'y a aucun commentaire pour cette version

Résumé

Détails

Propriétés de la Page
Contenu
... ... @@ -726,8 +726,8 @@
726 726  * {{code language="xml"}}table[$foo = 'bar']{{/code}}⟹ exactly the same, just a shorter notation for string keys
727 727  * {{code language="xml"}}table[foo = 'bar']{{/code}}⟹ error, 'foo' does not start with a '$'
728 728  * {{code language="xml"}}table[{1} = [], {2} = table[]] {{/code}}⟹ a table that maps 1 to an empty list and 2 to an empty table
729 -* {{code language="xml"}}table[faction.argon = 'bar']{{/code}}⟹ error, the expression 'faction.argon' will not be resolved into a key value. Requires { } braces.
730 -* {{code language="xml"}}table[{faction.argon} = 'bar'] {{/code}}⟹ a table that maps the value 'faction.argon' to the string 'bar'
729 +* {{code language="xml"}}table[faction.argon = 'bar']{{/code}}⟹ error, the expression 'faction.argon' will not be resolved into a key value
730 +* {{code language="xml"}}table[{faction.argon} = 'bar'] {{/code}}⟹ a table that maps the expression 'faction.argon' to the string 'bar'
731 731  
732 732  Just like lists, tables are stored as references, so it's possible that multiple variables reference the same table (see above).
733 733