aboutsummaryrefslogtreecommitdiff
path: root/man/man3/tomo-Set.add_all.3
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 15:54:05 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 15:54:05 -0400
commitfa3c016ad6e51d9bec120a770a7a7d6b2be75007 (patch)
treeaae4ac4b0cd3f94d9f74bd0ade176e91d5f72cd7 /man/man3/tomo-Set.add_all.3
parentb58daa1469b36fdc7a8c3441ce33e0a6e6e61e0b (diff)
More deprecations of set docs stuff
Diffstat (limited to 'man/man3/tomo-Set.add_all.3')
-rw-r--r--man/man3/tomo-Set.add_all.334
1 files changed, 0 insertions, 34 deletions
diff --git a/man/man3/tomo-Set.add_all.3 b/man/man3/tomo-Set.add_all.3
deleted file mode 100644
index c8496166..00000000
--- a/man/man3/tomo-Set.add_all.3
+++ /dev/null
@@ -1,34 +0,0 @@
-'\" t
-.\" Copyright (c) 2025 Bruce Hill
-.\" All rights reserved.
-.\"
-.TH Set.add_all 3 2025-04-30 "Tomo man-pages"
-.SH NAME
-Set.add_all \- add items to a set
-.SH LIBRARY
-Tomo Standard Library
-.SH SYNOPSIS
-.nf
-.BI Set.add_all\ :\ func(set:\ @|T|,\ items:\ [T]\ ->\ Void)
-.fi
-.SH DESCRIPTION
-Adds multiple items to the set.
-
-
-.SH ARGUMENTS
-
-.TS
-allbox;
-lb lb lbx lb
-l l l l.
-Name Type Description Default
-set @|T| The mutable reference to the set. -
-items [T] The list of items to add to the set. -
-.TE
-.SH RETURN
-Nothing.
-
-.SH EXAMPLES
-.EX
->> nums.add_all([1, 2, 3])
-.EE