Difference between revisions of "Manuals/calci/INSET"
Jump to navigation
Jump to search
(Created page with "INSET") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | INSET | + | <div style="font-size:30px">'''INSET()'''</div><br/> |
+ | |||
+ | ==Description== | ||
+ | *This function is the tester function of the specified values with in the set or not. | ||
+ | *In <math>INSET()</math>,the parameters are any two set of numbers. | ||
+ | *This function will return the result as TRUE when any one number in second set values occurs in the first set. | ||
+ | *Also will return as FALSE when any one of the values in the 2nd set is not occur in first set. | ||
+ | |||
+ | ==Examples== | ||
+ | #INSET([1,2,3,45,9],[2,9,45]) = true | ||
+ | #INSET([10.2,54.3,90.08,18.5],[90.08,89,43]) = true | ||
+ | #INSET([23,26,78,154],[43,87,65,10]) = false | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=BhFgcf0VSYc|280|center|SubSet}} | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/SET | SET ]] | ||
+ | *[[Manuals/calci/ODDSET | ODDSET ]] | ||
+ | *[[Manuals/calci/LN | LN ]] | ||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[ Z3 | Z3 home ]] | ||
+ | |||
+ | ==References== | ||
+ | *[https://support.smartbear.com/testcomplete/docs/reference/language/all/set-operations-inset.html Set] | ||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 14:14, 14 January 2019
INSET()
Description
- This function is the tester function of the specified values with in the set or not.
- In ,the parameters are any two set of numbers.
- This function will return the result as TRUE when any one number in second set values occurs in the first set.
- Also will return as FALSE when any one of the values in the 2nd set is not occur in first set.
Examples
- INSET([1,2,3,45,9],[2,9,45]) = true
- INSET([10.2,54.3,90.08,18.5],[90.08,89,43]) = true
- INSET([23,26,78,154],[43,87,65,10]) = false