(39 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Table.set 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 Table.set \- set a table entry8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Table.set\ :\ func(t:\ {K:V},\ key:\ K,\ value:\ V\ ->\ Void)13 .fi14 .SH DESCRIPTION15 Sets or updates the value associated with a specified key.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 t {K:V} The reference to the table.26 key K The key to set or update.27 value V The value to associate with the key.28 .TE29 .SH RETURN30 Nothing.32 .SH EXAMPLES33 .EX34 t := &{"A": 1, "B": 2}35 t.set("C", 3)36 assert t == {"A": 1, "B": 2, "C": 3}37 .EE38 .SH SEE ALSO39 .BR Tomo-Table (3)