(40 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Table.without 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 Table.without \- return a table without key/value pairs in another table8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Table.without\ :\ func(t:\ {K:V},\ other:\ {K:V}\ ->\ {K:V})13 .fi14 .SH DESCRIPTION15 Return a copy of a table, but without any of the exact key/value pairs found in the other table.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 whose key/value pairs will be omitted.27 .TE28 .SH RETURN29 The original table, but without the key/value pairs from the other table.31 .SH NOTES32 Only exact key/value pairs will be discarded. Keys with a non-matching value will be kept.34 .SH EXAMPLES35 .EX36 t := {"A": 1, "B": 2, "C": 3}37 assert t.without({"B": 2, "C": 30, "D": 40}) == {"A": 1, "C": 3}38 .EE39 .SH SEE ALSO40 .BR Tomo-Table (3)