Computes
the
intersection
of
the
results
(first
combined
with
second ).
Remarks:
The
following
table
shows
the
combinations
for
this
function
(header
row
:=
first
result,
header
column
:=
second
result):
| Error | Void | Ok | Empty |
------+-------+-------+-------+-------+
Error | Error | Error | Error | Error |
------+-------+-------+-------+-------+
Void | Void | Void | Void | Void |
------+-------+-------+-------+-------+
Ok | Error | Void | Ok | Ok |
------+-------+-------+-------+-------+
Empty | Error | Void | Ok | Empty |
------+-------+-------+-------+-------+
|