List.IntersectList.Intersect
構文Syntax
List.Intersect(lists as list, optional equationCriteria as any) as list
バージョン情報About
入力リスト lists
内で見つかったリスト値の積集合を返します。Returns the intersection of the list values found in the input list lists
. 省略可能なパラメーター equationCriteria
を指定できます。An optional parameter, equationCriteria
, can be specifed.
例 1Example 1
{1..5}、{2..6}、{3..7} の各リストの積集合を求めます。Find the intersection of the lists {1..5}, {2..6}, {3..7}.
List.Intersect({{1..5}, {2..6}, {3..7}})
33 |
44 |
55 |