|
<list> = <list> ## <list>
Operators: Append Text to Variable "#=" Operators: Append List to Variable "##=" Operators: Concatenate Texts "#" Operators: Concatenate Lists "##"Concatenate two Glossary: list, list_vallist values. Flow control: returnReturns a Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallist.
Flow control: if … thenIf one Glossary: Operator Glossary: Operandoperand is Operators: Bitwise Not "~" Operators: Boolean Negation "!"not a Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallist, it is converted to a Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallist first, just by creating a Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallist with List functions: thisthis Glossary: Operator Glossary: Operandoperand as a single item.
vipsi> Instructions: putput {1,2,3} ## {4,5,6} = { 1, 2, 3, 4, 5, 6 }
vipsi> Instructions: putput {1,2,3} ## "anton" = { 1, 2, 3, "anton" }
vipsi> Instructions: putput "anton" ## {1,2,3} = { "anton", 1, 2, 3 }
vipsi> Instructions: putput "ant" ## "0123.40" = { "ant", "0123.40" }
vipsi> Instructions: putput "anton" ## 0123.40 = { "anton", 123.4 }
vipsi> Instructions: putput 123.456 ## 0123.40 = { 123.456, 123.4 }
vipsi>
Operators: Bitwise Not "~" Operators: Boolean Negation "!"Note: Vipsi command syntax: Operators Operators Glossary: Operatoroperator ## Operators: Append Text to Variable "#=" Operators: Append List to Variable "##=" Operators: Concatenate Texts "#" Operators: Concatenate Lists "##"concatenates two Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallists. Flow control: if … thenIf you wish to append a Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallist as a single item Operators: Make Identifier "@"at Flow control: if … then Flow control: try … thenthe Flow control: end Shell Immediate Commands: exit, quit, endend of another Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallist, Flow control: if … then Flow control: try … thenthen you must Instructions: putput it into a Data Types: Lists and arrays Item selector "[]": Lists Glossary: list, list_vallist first:
vipsi> Instructions: var How does VScript::Value() work?: Var*&var a={1,2,3} i4="i4", i5={5,6}
vipsi> a ## i4 o>= { 1, 2, 3, "i4" }
vipsi> a ## {i4} o>= { 1, 2, 3, "i4" }
vipsi> a ## i5 o>= { 1, 2, 3, 5, 6 }
vipsi> a ## {i5} o>= { 1, 2, 3, { 5, 6 } }
i>
| |