code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(39 lines)
1 '\" t
2 .\" Copyright (c) 2026 Bruce Hill
3 .\" All rights reserved.
4 .\"
5 .TH Table.set 3 2026-03-08 "Tomo man-pages"
6 .SH NAME
7 Table.set \- set a table entry
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Table.set\ :\ func(t:\ {K:V},\ key:\ K,\ value:\ V\ ->\ Void)
13 .fi
14 .SH DESCRIPTION
15 Sets or updates the value associated with a specified key.
18 .SH ARGUMENTS
20 .TS
21 allbox;
22 lb lb lbx
23 l l l.
24 Name Type Description
25 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 .TE
29 .SH RETURN
30 Nothing.
32 .SH EXAMPLES
33 .EX
34 t := &{"A": 1, "B": 2}
35 t.set("C", 3)
36 assert t == {"A": 1, "B": 2, "C": 3}
37 .EE
38 .SH SEE ALSO
39 .BR Tomo-Table (3)