(38 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Table.intersection 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 Table.intersection \- return a table with common key/value pairs from two tables8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Table.intersection\ :\ func(t:\ {K:V},\ other:\ {K:V}\ ->\ {K:V})13 .fi14 .SH DESCRIPTION15 Return a table with only the matching key/value pairs that are common to both tables.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 t {K:V} The base table.26 other {K:V} The other table.27 .TE28 .SH RETURN29 A table containing the common key/value pairs shared between two tables.31 .SH EXAMPLES32 .EX33 t1 := {"A": 1, "B": 2, "C": 3}34 t2 := {"B": 2, "C":30, "D": 40}35 assert t1.intersection(t2) == {"B": 2}36 .EE37 .SH SEE ALSO38 .BR Tomo-Table (3)