diff options
Diffstat (limited to 'man/man3')
130 files changed, 579 insertions, 579 deletions
diff --git a/man/man3/tomo-Byte.get_bit.3 b/man/man3/tomo-Byte.get_bit.3 index 2e383fff..ad92560e 100644 --- a/man/man3/tomo-Byte.get_bit.3 +++ b/man/man3/tomo-Byte.get_bit.3 @@ -19,11 +19,11 @@ In the binary representation of a byte, check whether a given bit index is set t .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -i Byte The byte whose bits are being inspected. - -bit_index Int The index of the bit to check (1-indexed, range 1-8). - +lb lb lbx +l l l. +Name Type Description +i Byte The byte whose bits are being inspected. +bit_index Int The index of the bit to check (1-indexed, range 1-8). .TE .SH RETURN Whether or not the given bit index is set to 1 in the byte. diff --git a/man/man3/tomo-Byte.is_between.3 b/man/man3/tomo-Byte.is_between.3 index 8c7e871c..06e53fb0 100644 --- a/man/man3/tomo-Byte.is_between.3 +++ b/man/man3/tomo-Byte.is_between.3 @@ -19,12 +19,12 @@ Determines if an integer is between two numbers (inclusive). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Byte The integer to be checked. - -low Byte The lower bound to check (inclusive). - -high Byte The upper bound to check (inclusive). - +lb lb lbx +l l l. +Name Type Description +x Byte The integer to be checked. +low Byte The lower bound to check (inclusive). +high Byte The upper bound to check (inclusive). .TE .SH RETURN `yes` if `low <= x and x <= high`, otherwise `no` diff --git a/man/man3/tomo-CString.as_text.3 b/man/man3/tomo-CString.as_text.3 index c896861a..b9a8db95 100644 --- a/man/man3/tomo-CString.as_text.3 +++ b/man/man3/tomo-CString.as_text.3 @@ -19,10 +19,10 @@ Convert a C string to Text. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -str CString The C string. - +lb lb lbx +l l l. +Name Type Description +str CString The C string. .TE .SH RETURN The C string as a Text. diff --git a/man/man3/tomo-CString.join.3 b/man/man3/tomo-CString.join.3 index a4aa16f3..c44df80d 100644 --- a/man/man3/tomo-CString.join.3 +++ b/man/man3/tomo-CString.join.3 @@ -19,11 +19,11 @@ Join a list of C strings together with a separator. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -glue CString The C joiner used to between elements. - -pieces [CString] A list of C strings to join. - +lb lb lbx +l l l. +Name Type Description +glue CString The C joiner used to between elements. +pieces [CString] A list of C strings to join. .TE .SH RETURN A C string of the joined together bits. diff --git a/man/man3/tomo-Int.abs.3 b/man/man3/tomo-Int.abs.3 index ad5d9411..71c60960 100644 --- a/man/man3/tomo-Int.abs.3 +++ b/man/man3/tomo-Int.abs.3 @@ -19,10 +19,10 @@ Calculates the absolute value of an integer. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Int The integer whose absolute value is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Int The integer whose absolute value is to be calculated. .TE .SH RETURN The absolute value of `x`. diff --git a/man/man3/tomo-Int.choose.3 b/man/man3/tomo-Int.choose.3 index 231d75f0..1e5c705b 100644 --- a/man/man3/tomo-Int.choose.3 +++ b/man/man3/tomo-Int.choose.3 @@ -19,11 +19,11 @@ Computes the binomial coefficient of the given numbers (the equivalent of `n` ch .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -n Int The number of things to choose from. - -k Int The number of things to be chosen. - +lb lb lbx +l l l. +Name Type Description +n Int The number of things to choose from. +k Int The number of things to be chosen. .TE .SH RETURN The binomial coefficient, equivalent to the number of ways to uniquely choose `k` objects from among `n` objects, ignoring order. diff --git a/man/man3/tomo-Int.clamped.3 b/man/man3/tomo-Int.clamped.3 index deb1a98b..5d846a21 100644 --- a/man/man3/tomo-Int.clamped.3 +++ b/man/man3/tomo-Int.clamped.3 @@ -19,12 +19,12 @@ Returns the given number clamped between two values so that it is within that ra .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Int The integer to clamp. - -low Int The lowest value the result can take. - -high Int The highest value the result can take. - +lb lb lbx +l l l. +Name Type Description +x Int The integer to clamp. +low Int The lowest value the result can take. +high Int The highest value the result can take. .TE .SH RETURN The first argument clamped between the other two arguments. diff --git a/man/man3/tomo-Int.factorial.3 b/man/man3/tomo-Int.factorial.3 index accebcdb..e7105287 100644 --- a/man/man3/tomo-Int.factorial.3 +++ b/man/man3/tomo-Int.factorial.3 @@ -19,10 +19,10 @@ Computes the factorial of an integer. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -n Int The integer to compute the factorial of. - +lb lb lbx +l l l. +Name Type Description +n Int The integer to compute the factorial of. .TE .SH RETURN The factorial of the given integer. diff --git a/man/man3/tomo-Int.get_bit.3 b/man/man3/tomo-Int.get_bit.3 index d5614a6a..bf9f11b2 100644 --- a/man/man3/tomo-Int.get_bit.3 +++ b/man/man3/tomo-Int.get_bit.3 @@ -19,11 +19,11 @@ In the binary representation of an integer, check whether a given bit index is s .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -i Int The integer whose bits are being inspected. - -bit_index Int The index of the bit to check (1-indexed). - +lb lb lbx +l l l. +Name Type Description +i Int The integer whose bits are being inspected. +bit_index Int The index of the bit to check (1-indexed). .TE .SH RETURN Whether or not the given bit index is set to 1 in the binary representation of the integer. diff --git a/man/man3/tomo-Int.is_between.3 b/man/man3/tomo-Int.is_between.3 index 261bb5a4..8087e0d0 100644 --- a/man/man3/tomo-Int.is_between.3 +++ b/man/man3/tomo-Int.is_between.3 @@ -19,12 +19,12 @@ Determines if an integer is between two numbers (inclusive). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Int The integer to be checked. - -low Int The lower bound to check (inclusive). - -high Int The upper bound to check (inclusive). - +lb lb lbx +l l l. +Name Type Description +x Int The integer to be checked. +low Int The lower bound to check (inclusive). +high Int The upper bound to check (inclusive). .TE .SH RETURN `yes` if `low <= x and x <= high`, otherwise `no` diff --git a/man/man3/tomo-Int.next_prime.3 b/man/man3/tomo-Int.next_prime.3 index 0afcf7e9..ab2c4307 100644 --- a/man/man3/tomo-Int.next_prime.3 +++ b/man/man3/tomo-Int.next_prime.3 @@ -19,10 +19,10 @@ Finds the next prime number greater than the given integer. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Int The integer after which to find the next prime. - +lb lb lbx +l l l. +Name Type Description +x Int The integer after which to find the next prime. .TE .SH RETURN The next prime number greater than `x`. diff --git a/man/man3/tomo-Int.prev_prime.3 b/man/man3/tomo-Int.prev_prime.3 index 6908f408..87f7be36 100644 --- a/man/man3/tomo-Int.prev_prime.3 +++ b/man/man3/tomo-Int.prev_prime.3 @@ -19,10 +19,10 @@ Finds the previous prime number less than the given integer. If there is no prev .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Int The integer before which to find the previous prime. - +lb lb lbx +l l l. +Name Type Description +x Int The integer before which to find the previous prime. .TE .SH RETURN The previous prime number less than `x`, or `none` if `x` is less than 2. diff --git a/man/man3/tomo-Int.sqrt.3 b/man/man3/tomo-Int.sqrt.3 index f929a5fd..6a3e7eaf 100644 --- a/man/man3/tomo-Int.sqrt.3 +++ b/man/man3/tomo-Int.sqrt.3 @@ -19,10 +19,10 @@ Calculates the nearest square root of an integer. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Int The integer whose square root is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Int The integer whose square root is to be calculated. .TE .SH RETURN The integer part of the square root of `x`. diff --git a/man/man3/tomo-List.by.3 b/man/man3/tomo-List.by.3 index 5f114df8..463ea9ed 100644 --- a/man/man3/tomo-List.by.3 +++ b/man/man3/tomo-List.by.3 @@ -19,11 +19,11 @@ Creates a new list with elements spaced by the specified step value. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The original list. - -step Int The step value for selecting elements. - +lb lb lbx +l l l. +Name Type Description +list [T] The original list. +step Int The step value for selecting elements. .TE .SH RETURN A new list with every `step`-th element from the original list. diff --git a/man/man3/tomo-List.clear.3 b/man/man3/tomo-List.clear.3 index 0f767272..b4237e45 100644 --- a/man/man3/tomo-List.clear.3 +++ b/man/man3/tomo-List.clear.3 @@ -19,10 +19,10 @@ Clears all elements from the list. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list @[T] The mutable reference to the list to be cleared. - +lb lb lbx +l l l. +Name Type Description +list @[T] The mutable reference to the list to be cleared. .TE .SH RETURN Nothing. diff --git a/man/man3/tomo-List.counts.3 b/man/man3/tomo-List.counts.3 index c4e22303..54698085 100644 --- a/man/man3/tomo-List.counts.3 +++ b/man/man3/tomo-List.counts.3 @@ -19,10 +19,10 @@ Counts the occurrences of each element in the list. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The list to count elements in. - +lb lb lbx +l l l. +Name Type Description +list [T] The list to count elements in. .TE .SH RETURN A table mapping each element to its count. diff --git a/man/man3/tomo-List.find.3 b/man/man3/tomo-List.find.3 index 1eef0bb2..eece41a1 100644 --- a/man/man3/tomo-List.find.3 +++ b/man/man3/tomo-List.find.3 @@ -19,11 +19,11 @@ Finds the index of the first occurrence of an element (if any). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The list to search through. - -target T The item to search for. - +lb lb lbx +l l l. +Name Type Description +list [T] The list to search through. +target T The item to search for. .TE .SH RETURN The index of the first occurrence or `none` if not found. diff --git a/man/man3/tomo-List.from.3 b/man/man3/tomo-List.from.3 index f58e669e..e63a089c 100644 --- a/man/man3/tomo-List.from.3 +++ b/man/man3/tomo-List.from.3 @@ -19,11 +19,11 @@ Returns a slice of the list starting from a specified index. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The original list. - -first Int The index to start from. - +lb lb lbx +l l l. +Name Type Description +list [T] The original list. +first Int The index to start from. .TE .SH RETURN A new list starting from the specified index. diff --git a/man/man3/tomo-List.has.3 b/man/man3/tomo-List.has.3 index 75eb5bc8..6406e294 100644 --- a/man/man3/tomo-List.has.3 +++ b/man/man3/tomo-List.has.3 @@ -19,11 +19,11 @@ Checks if the list has an element. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The list to check. - -target T The element to check for. - +lb lb lbx +l l l. +Name Type Description +list [T] The list to check. +target T The element to check for. .TE .SH RETURN `yes` if the list has the element, `no` otherwise. diff --git a/man/man3/tomo-List.reversed.3 b/man/man3/tomo-List.reversed.3 index b49d82a9..f0450007 100644 --- a/man/man3/tomo-List.reversed.3 +++ b/man/man3/tomo-List.reversed.3 @@ -19,10 +19,10 @@ Returns a reversed slice of the list. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The list to be reversed. - +lb lb lbx +l l l. +Name Type Description +list [T] The list to be reversed. .TE .SH RETURN A slice of the list with elements in reverse order. diff --git a/man/man3/tomo-List.slice.3 b/man/man3/tomo-List.slice.3 index d160c863..5025733a 100644 --- a/man/man3/tomo-List.slice.3 +++ b/man/man3/tomo-List.slice.3 @@ -19,12 +19,12 @@ Returns a slice of the list spanning the given indices (inclusive). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The original list. - -from Int The first index to include. - -to Int The last index to include. - +lb lb lbx +l l l. +Name Type Description +list [T] The original list. +from Int The first index to include. +to Int The last index to include. .TE .SH RETURN A new list spanning the given indices. Note: negative indices are counted from the back of the list, so `-1` refers to the last element, `-2` the second-to-last, and so on. diff --git a/man/man3/tomo-List.to.3 b/man/man3/tomo-List.to.3 index dd1a23a9..5e3e3d77 100644 --- a/man/man3/tomo-List.to.3 +++ b/man/man3/tomo-List.to.3 @@ -19,11 +19,11 @@ Returns a slice of the list from the start of the original list up to a specifie .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The original list. - -last Int The index up to which elements should be included. - +lb lb lbx +l l l. +Name Type Description +list [T] The original list. +last Int The index up to which elements should be included. .TE .SH RETURN A new list containing elements from the start up to the specified index. diff --git a/man/man3/tomo-List.unique.3 b/man/man3/tomo-List.unique.3 index 1c203a62..80b9b9f5 100644 --- a/man/man3/tomo-List.unique.3 +++ b/man/man3/tomo-List.unique.3 @@ -19,10 +19,10 @@ Returns a set of the unique elements of the list. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The list to process. - +lb lb lbx +l l l. +Name Type Description +list [T] The list to process. .TE .SH RETURN A set of the unique elements from the list. diff --git a/man/man3/tomo-List.where.3 b/man/man3/tomo-List.where.3 index a436d2ea..9a02aaaf 100644 --- a/man/man3/tomo-List.where.3 +++ b/man/man3/tomo-List.where.3 @@ -19,11 +19,11 @@ Find the index of the first item that matches a predicate function (if any). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -list [T] The list to search through. - -predicate func(item:&T -> Bool) A function that returns \fByes\fR if the item's index should be returned or \fBno\fR if it should not. - +lb lb lbx +l l l. +Name Type Description +list [T] The list to search through. +predicate func(item:&T -> Bool) A function that returns \fByes\fR if the item's index should be returned or \fBno\fR if it should not. .TE .SH RETURN Returns the index of the first item where the predicate is true or `none` if no item matches. diff --git a/man/man3/tomo-Num.abs.3 b/man/man3/tomo-Num.abs.3 index e34723f8..7bff8981 100644 --- a/man/man3/tomo-Num.abs.3 +++ b/man/man3/tomo-Num.abs.3 @@ -19,10 +19,10 @@ Calculates the absolute value of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -n Num The number whose absolute value is to be computed. - +lb lb lbx +l l l. +Name Type Description +n Num The number whose absolute value is to be computed. .TE .SH RETURN The absolute value of `n`. diff --git a/man/man3/tomo-Num.acos.3 b/man/man3/tomo-Num.acos.3 index 8c007109..83070c32 100644 --- a/man/man3/tomo-Num.acos.3 +++ b/man/man3/tomo-Num.acos.3 @@ -19,10 +19,10 @@ Computes the arc cosine of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the arc cosine is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the arc cosine is to be calculated. .TE .SH RETURN The arc cosine of `x` in radians. diff --git a/man/man3/tomo-Num.acosh.3 b/man/man3/tomo-Num.acosh.3 index f2980b39..680d6e24 100644 --- a/man/man3/tomo-Num.acosh.3 +++ b/man/man3/tomo-Num.acosh.3 @@ -19,10 +19,10 @@ Computes the inverse hyperbolic cosine of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the inverse hyperbolic cosine is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the inverse hyperbolic cosine is to be calculated. .TE .SH RETURN The inverse hyperbolic cosine of `x`. diff --git a/man/man3/tomo-Num.asin.3 b/man/man3/tomo-Num.asin.3 index 4501c81e..c44e5fe4 100644 --- a/man/man3/tomo-Num.asin.3 +++ b/man/man3/tomo-Num.asin.3 @@ -19,10 +19,10 @@ Computes the arc sine of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the arc sine is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the arc sine is to be calculated. .TE .SH RETURN The arc sine of `x` in radians. diff --git a/man/man3/tomo-Num.asinh.3 b/man/man3/tomo-Num.asinh.3 index 4c2216a8..ac1fe25a 100644 --- a/man/man3/tomo-Num.asinh.3 +++ b/man/man3/tomo-Num.asinh.3 @@ -19,10 +19,10 @@ Computes the inverse hyperbolic sine of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the inverse hyperbolic sine is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the inverse hyperbolic sine is to be calculated. .TE .SH RETURN The inverse hyperbolic sine of `x`. diff --git a/man/man3/tomo-Num.atan.3 b/man/man3/tomo-Num.atan.3 index 28efbba5..e2303e64 100644 --- a/man/man3/tomo-Num.atan.3 +++ b/man/man3/tomo-Num.atan.3 @@ -19,10 +19,10 @@ Computes the arc tangent of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the arc tangent is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the arc tangent is to be calculated. .TE .SH RETURN The arc tangent of `x` in radians. diff --git a/man/man3/tomo-Num.atan2.3 b/man/man3/tomo-Num.atan2.3 index e960bf99..aa9b2585 100644 --- a/man/man3/tomo-Num.atan2.3 +++ b/man/man3/tomo-Num.atan2.3 @@ -19,11 +19,11 @@ Computes the arc tangent of the quotient of two numbers. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The numerator. - -y Num The denominator. - +lb lb lbx +l l l. +Name Type Description +x Num The numerator. +y Num The denominator. .TE .SH RETURN The arc tangent of `x/y` in radians. diff --git a/man/man3/tomo-Num.atanh.3 b/man/man3/tomo-Num.atanh.3 index 677e13ab..13e2ccb2 100644 --- a/man/man3/tomo-Num.atanh.3 +++ b/man/man3/tomo-Num.atanh.3 @@ -19,10 +19,10 @@ Computes the inverse hyperbolic tangent of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the inverse hyperbolic tangent is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the inverse hyperbolic tangent is to be calculated. .TE .SH RETURN The inverse hyperbolic tangent of `x`. diff --git a/man/man3/tomo-Num.cbrt.3 b/man/man3/tomo-Num.cbrt.3 index 05bfbb84..790abf86 100644 --- a/man/man3/tomo-Num.cbrt.3 +++ b/man/man3/tomo-Num.cbrt.3 @@ -19,10 +19,10 @@ Computes the cube root of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the cube root is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the cube root is to be calculated. .TE .SH RETURN The cube root of `x`. diff --git a/man/man3/tomo-Num.ceil.3 b/man/man3/tomo-Num.ceil.3 index d096bce4..a43b0414 100644 --- a/man/man3/tomo-Num.ceil.3 +++ b/man/man3/tomo-Num.ceil.3 @@ -19,10 +19,10 @@ Rounds a number up to the nearest integer. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number to be rounded up. - +lb lb lbx +l l l. +Name Type Description +x Num The number to be rounded up. .TE .SH RETURN The smallest integer greater than or equal to `x`. diff --git a/man/man3/tomo-Num.clamped.3 b/man/man3/tomo-Num.clamped.3 index 8561babc..21136b26 100644 --- a/man/man3/tomo-Num.clamped.3 +++ b/man/man3/tomo-Num.clamped.3 @@ -19,12 +19,12 @@ Returns the given number clamped between two values so that it is within that ra .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number to clamp. - -low Num The lowest value the result can take. - -high Num The highest value the result can take. - +lb lb lbx +l l l. +Name Type Description +x Num The number to clamp. +low Num The lowest value the result can take. +high Num The highest value the result can take. .TE .SH RETURN The first argument clamped between the other two arguments. diff --git a/man/man3/tomo-Num.copysign.3 b/man/man3/tomo-Num.copysign.3 index e7ed54b9..919772cd 100644 --- a/man/man3/tomo-Num.copysign.3 +++ b/man/man3/tomo-Num.copysign.3 @@ -19,11 +19,11 @@ Copies the sign of one number to another. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number whose magnitude will be copied. - -y Num The number whose sign will be copied. - +lb lb lbx +l l l. +Name Type Description +x Num The number whose magnitude will be copied. +y Num The number whose sign will be copied. .TE .SH RETURN A number with the magnitude of `x` and the sign of `y`. diff --git a/man/man3/tomo-Num.cos.3 b/man/man3/tomo-Num.cos.3 index 884a4f3e..0d4932d2 100644 --- a/man/man3/tomo-Num.cos.3 +++ b/man/man3/tomo-Num.cos.3 @@ -19,10 +19,10 @@ Computes the cosine of a number (angle in radians). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The angle in radians. - +lb lb lbx +l l l. +Name Type Description +x Num The angle in radians. .TE .SH RETURN The cosine of `x`. diff --git a/man/man3/tomo-Num.cosh.3 b/man/man3/tomo-Num.cosh.3 index 8a85b7c3..adc0bba5 100644 --- a/man/man3/tomo-Num.cosh.3 +++ b/man/man3/tomo-Num.cosh.3 @@ -19,10 +19,10 @@ Computes the hyperbolic cosine of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the hyperbolic cosine is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the hyperbolic cosine is to be calculated. .TE .SH RETURN The hyperbolic cosine of `x`. diff --git a/man/man3/tomo-Num.erf.3 b/man/man3/tomo-Num.erf.3 index a858ecda..8a2afed3 100644 --- a/man/man3/tomo-Num.erf.3 +++ b/man/man3/tomo-Num.erf.3 @@ -19,10 +19,10 @@ Computes the error function of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the error function is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the error function is to be calculated. .TE .SH RETURN The error function of `x`. diff --git a/man/man3/tomo-Num.erfc.3 b/man/man3/tomo-Num.erfc.3 index 8b51d6cd..82de219c 100644 --- a/man/man3/tomo-Num.erfc.3 +++ b/man/man3/tomo-Num.erfc.3 @@ -19,10 +19,10 @@ Computes the complementary error function of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the complementary error function is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the complementary error function is to be calculated. .TE .SH RETURN The complementary error function of `x`. diff --git a/man/man3/tomo-Num.exp.3 b/man/man3/tomo-Num.exp.3 index 651f43ea..ac784957 100644 --- a/man/man3/tomo-Num.exp.3 +++ b/man/man3/tomo-Num.exp.3 @@ -19,10 +19,10 @@ Computes the exponential function $e^x$ for a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The exponent. - +lb lb lbx +l l l. +Name Type Description +x Num The exponent. .TE .SH RETURN The value of $e^x$. diff --git a/man/man3/tomo-Num.exp2.3 b/man/man3/tomo-Num.exp2.3 index 6e4f6626..194de5ce 100644 --- a/man/man3/tomo-Num.exp2.3 +++ b/man/man3/tomo-Num.exp2.3 @@ -19,10 +19,10 @@ Computes $2^x$ for a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The exponent. - +lb lb lbx +l l l. +Name Type Description +x Num The exponent. .TE .SH RETURN The value of $2^x$. diff --git a/man/man3/tomo-Num.expm1.3 b/man/man3/tomo-Num.expm1.3 index c82f38df..099186cc 100644 --- a/man/man3/tomo-Num.expm1.3 +++ b/man/man3/tomo-Num.expm1.3 @@ -19,10 +19,10 @@ Computes $e^x - 1$ for a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The exponent. - +lb lb lbx +l l l. +Name Type Description +x Num The exponent. .TE .SH RETURN The value of $e^x - 1$. diff --git a/man/man3/tomo-Num.fdim.3 b/man/man3/tomo-Num.fdim.3 index f4b0a46a..2b1071d1 100644 --- a/man/man3/tomo-Num.fdim.3 +++ b/man/man3/tomo-Num.fdim.3 @@ -19,11 +19,11 @@ Computes the positive difference between two numbers. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The first number. - -y Num The second number. - +lb lb lbx +l l l. +Name Type Description +x Num The first number. +y Num The second number. .TE .SH RETURN The positive difference $\max(0, x - y)$. diff --git a/man/man3/tomo-Num.floor.3 b/man/man3/tomo-Num.floor.3 index ff78d081..5dfc2ae0 100644 --- a/man/man3/tomo-Num.floor.3 +++ b/man/man3/tomo-Num.floor.3 @@ -19,10 +19,10 @@ Rounds a number down to the nearest integer. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number to be rounded down. - +lb lb lbx +l l l. +Name Type Description +x Num The number to be rounded down. .TE .SH RETURN The largest integer less than or equal to `x`. diff --git a/man/man3/tomo-Num.hypot.3 b/man/man3/tomo-Num.hypot.3 index de0d64a1..67bbd9af 100644 --- a/man/man3/tomo-Num.hypot.3 +++ b/man/man3/tomo-Num.hypot.3 @@ -19,11 +19,11 @@ Computes the Euclidean norm, $\sqrt{x^2 + y^2}$, of two numbers. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The first number. - -y Num The second number. - +lb lb lbx +l l l. +Name Type Description +x Num The first number. +y Num The second number. .TE .SH RETURN The Euclidean norm of `x` and `y`. diff --git a/man/man3/tomo-Num.is_between.3 b/man/man3/tomo-Num.is_between.3 index bba3ad19..4276c8e3 100644 --- a/man/man3/tomo-Num.is_between.3 +++ b/man/man3/tomo-Num.is_between.3 @@ -19,12 +19,12 @@ Determines if a number is between two numbers (inclusive). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The integer to be checked. - -low Num The lower bound to check (inclusive). - -high Num The upper bound to check (inclusive). - +lb lb lbx +l l l. +Name Type Description +x Num The integer to be checked. +low Num The lower bound to check (inclusive). +high Num The upper bound to check (inclusive). .TE .SH RETURN `yes` if `low <= x and x <= high`, otherwise `no` diff --git a/man/man3/tomo-Num.isfinite.3 b/man/man3/tomo-Num.isfinite.3 index fac2f19d..81002b32 100644 --- a/man/man3/tomo-Num.isfinite.3 +++ b/man/man3/tomo-Num.isfinite.3 @@ -19,10 +19,10 @@ Checks if a number is finite. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -n Num The number to be checked. - +lb lb lbx +l l l. +Name Type Description +n Num The number to be checked. .TE .SH RETURN `yes` if `n` is finite, `no` otherwise. diff --git a/man/man3/tomo-Num.isinf.3 b/man/man3/tomo-Num.isinf.3 index 8de9736e..33016ae8 100644 --- a/man/man3/tomo-Num.isinf.3 +++ b/man/man3/tomo-Num.isinf.3 @@ -19,10 +19,10 @@ Checks if a number is infinite. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -n Num The number to be checked. - +lb lb lbx +l l l. +Name Type Description +n Num The number to be checked. .TE .SH RETURN `yes` if `n` is infinite, `no` otherwise. diff --git a/man/man3/tomo-Num.j0.3 b/man/man3/tomo-Num.j0.3 index c93a5f24..a4847bec 100644 --- a/man/man3/tomo-Num.j0.3 +++ b/man/man3/tomo-Num.j0.3 @@ -19,10 +19,10 @@ Computes the Bessel function of the first kind of order 0. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the Bessel function is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the Bessel function is to be calculated. .TE .SH RETURN The Bessel function of the first kind of order 0 of `x`. diff --git a/man/man3/tomo-Num.j1.3 b/man/man3/tomo-Num.j1.3 index 3d924958..eae8b9b7 100644 --- a/man/man3/tomo-Num.j1.3 +++ b/man/man3/tomo-Num.j1.3 @@ -19,10 +19,10 @@ Computes the Bessel function of the first kind of order 1. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the Bessel function is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the Bessel function is to be calculated. .TE .SH RETURN The Bessel function of the first kind of order 1 of `x`. diff --git a/man/man3/tomo-Num.log.3 b/man/man3/tomo-Num.log.3 index aae022c0..594e9edc 100644 --- a/man/man3/tomo-Num.log.3 +++ b/man/man3/tomo-Num.log.3 @@ -19,10 +19,10 @@ Computes the natural logarithm (base $e$) of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the natural logarithm is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the natural logarithm is to be calculated. .TE .SH RETURN The natural logarithm of `x`. diff --git a/man/man3/tomo-Num.log10.3 b/man/man3/tomo-Num.log10.3 index 1e5a13fc..181b26f8 100644 --- a/man/man3/tomo-Num.log10.3 +++ b/man/man3/tomo-Num.log10.3 @@ -19,10 +19,10 @@ Computes the base-10 logarithm of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the base-10 logarithm is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the base-10 logarithm is to be calculated. .TE .SH RETURN The base-10 logarithm of `x`. diff --git a/man/man3/tomo-Num.log1p.3 b/man/man3/tomo-Num.log1p.3 index 467e535d..677b101d 100644 --- a/man/man3/tomo-Num.log1p.3 +++ b/man/man3/tomo-Num.log1p.3 @@ -19,10 +19,10 @@ Computes $\log(1 + x)$ for a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which $\log(1 + x)$ is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which $\log(1 + x)$ is to be calculated. .TE .SH RETURN The value of $\log(1 + x)$. diff --git a/man/man3/tomo-Num.log2.3 b/man/man3/tomo-Num.log2.3 index ee0ea14b..4599df08 100644 --- a/man/man3/tomo-Num.log2.3 +++ b/man/man3/tomo-Num.log2.3 @@ -19,10 +19,10 @@ Computes the base-2 logarithm of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the base-2 logarithm is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the base-2 logarithm is to be calculated. .TE .SH RETURN The base-2 logarithm of `x`. diff --git a/man/man3/tomo-Num.logb.3 b/man/man3/tomo-Num.logb.3 index e2e5b738..a6930551 100644 --- a/man/man3/tomo-Num.logb.3 +++ b/man/man3/tomo-Num.logb.3 @@ -19,10 +19,10 @@ Computes the binary exponent (base-2 logarithm) of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the binary exponent is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the binary exponent is to be calculated. .TE .SH RETURN The binary exponent of `x`. diff --git a/man/man3/tomo-Num.mix.3 b/man/man3/tomo-Num.mix.3 index 01e5d7dd..0514de66 100644 --- a/man/man3/tomo-Num.mix.3 +++ b/man/man3/tomo-Num.mix.3 @@ -19,12 +19,12 @@ Interpolates between two numbers based on a given amount. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -amount Num The interpolation factor (between \fB0\fR and \fB1\fR). - -x Num The starting number. - -y Num The ending number. - +lb lb lbx +l l l. +Name Type Description +amount Num The interpolation factor (between \fB0\fR and \fB1\fR). +x Num The starting number. +y Num The ending number. .TE .SH RETURN The interpolated number between `x` and `y` based on `amount`. diff --git a/man/man3/tomo-Num.nextafter.3 b/man/man3/tomo-Num.nextafter.3 index 06256bdf..1379239b 100644 --- a/man/man3/tomo-Num.nextafter.3 +++ b/man/man3/tomo-Num.nextafter.3 @@ -19,11 +19,11 @@ Computes the next representable value after a given number towards a specified d .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The starting number. - -y Num The direction towards which to find the next representable value. - +lb lb lbx +l l l. +Name Type Description +x Num The starting number. +y Num The direction towards which to find the next representable value. .TE .SH RETURN The next representable value after `x` in the direction of `y`. diff --git a/man/man3/tomo-Num.rint.3 b/man/man3/tomo-Num.rint.3 index ae134089..948838be 100644 --- a/man/man3/tomo-Num.rint.3 +++ b/man/man3/tomo-Num.rint.3 @@ -19,10 +19,10 @@ Rounds a number to the nearest integer, with ties rounded to the nearest even in .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number to be rounded. - +lb lb lbx +l l l. +Name Type Description +x Num The number to be rounded. .TE .SH RETURN The nearest integer value of `x`. diff --git a/man/man3/tomo-Num.round.3 b/man/man3/tomo-Num.round.3 index e35cf39f..712d3038 100644 --- a/man/man3/tomo-Num.round.3 +++ b/man/man3/tomo-Num.round.3 @@ -19,10 +19,10 @@ Rounds a number to the nearest whole number integer. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number to be rounded. - +lb lb lbx +l l l. +Name Type Description +x Num The number to be rounded. .TE .SH RETURN The nearest integer value of `x`. diff --git a/man/man3/tomo-Num.significand.3 b/man/man3/tomo-Num.significand.3 index 1cd6421d..4f78407d 100644 --- a/man/man3/tomo-Num.significand.3 +++ b/man/man3/tomo-Num.significand.3 @@ -19,10 +19,10 @@ Extracts the significand (or mantissa) of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number from which to extract the significand. - +lb lb lbx +l l l. +Name Type Description +x Num The number from which to extract the significand. .TE .SH RETURN The significand of `x`. diff --git a/man/man3/tomo-Num.sin.3 b/man/man3/tomo-Num.sin.3 index 5f3ad779..826035bf 100644 --- a/man/man3/tomo-Num.sin.3 +++ b/man/man3/tomo-Num.sin.3 @@ -19,10 +19,10 @@ Computes the sine of a number (angle in radians). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The angle in radians. - +lb lb lbx +l l l. +Name Type Description +x Num The angle in radians. .TE .SH RETURN The sine of `x`. diff --git a/man/man3/tomo-Num.sinh.3 b/man/man3/tomo-Num.sinh.3 index b3157201..a65c19a9 100644 --- a/man/man3/tomo-Num.sinh.3 +++ b/man/man3/tomo-Num.sinh.3 @@ -19,10 +19,10 @@ Computes the hyperbolic sine of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the hyperbolic sine is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the hyperbolic sine is to be calculated. .TE .SH RETURN The hyperbolic sine of `x`. diff --git a/man/man3/tomo-Num.sqrt.3 b/man/man3/tomo-Num.sqrt.3 index c8db5200..5ade1af5 100644 --- a/man/man3/tomo-Num.sqrt.3 +++ b/man/man3/tomo-Num.sqrt.3 @@ -19,10 +19,10 @@ Computes the square root of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the square root is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the square root is to be calculated. .TE .SH RETURN The square root of `x`. diff --git a/man/man3/tomo-Num.tan.3 b/man/man3/tomo-Num.tan.3 index a159a4fa..7370d4b6 100644 --- a/man/man3/tomo-Num.tan.3 +++ b/man/man3/tomo-Num.tan.3 @@ -19,10 +19,10 @@ Computes the tangent of a number (angle in radians). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The angle in radians. - +lb lb lbx +l l l. +Name Type Description +x Num The angle in radians. .TE .SH RETURN The tangent of `x`. diff --git a/man/man3/tomo-Num.tanh.3 b/man/man3/tomo-Num.tanh.3 index 0bd99114..51dca0c6 100644 --- a/man/man3/tomo-Num.tanh.3 +++ b/man/man3/tomo-Num.tanh.3 @@ -19,10 +19,10 @@ Computes the hyperbolic tangent of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the hyperbolic tangent is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the hyperbolic tangent is to be calculated. .TE .SH RETURN The hyperbolic tangent of `x`. diff --git a/man/man3/tomo-Num.tgamma.3 b/man/man3/tomo-Num.tgamma.3 index 3aa2b61a..13d7ff5d 100644 --- a/man/man3/tomo-Num.tgamma.3 +++ b/man/man3/tomo-Num.tgamma.3 @@ -19,10 +19,10 @@ Computes the gamma function of a number. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the gamma function is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the gamma function is to be calculated. .TE .SH RETURN The gamma function of `x`. diff --git a/man/man3/tomo-Num.trunc.3 b/man/man3/tomo-Num.trunc.3 index 7de1bbea..4ba83aa2 100644 --- a/man/man3/tomo-Num.trunc.3 +++ b/man/man3/tomo-Num.trunc.3 @@ -19,10 +19,10 @@ Truncates a number to the nearest integer towards zero. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number to be truncated. - +lb lb lbx +l l l. +Name Type Description +x Num The number to be truncated. .TE .SH RETURN The integer part of `x` towards zero. diff --git a/man/man3/tomo-Num.with_precision.3 b/man/man3/tomo-Num.with_precision.3 index 5b1dc30c..aee46a28 100644 --- a/man/man3/tomo-Num.with_precision.3 +++ b/man/man3/tomo-Num.with_precision.3 @@ -19,11 +19,11 @@ Round a number to the given precision level (specified as `10`, `.1`, `.001` etc .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -n Num The number to be rounded to a given precision. - -precision Num The precision to which the number should be rounded. - +lb lb lbx +l l l. +Name Type Description +n Num The number to be rounded to a given precision. +precision Num The precision to which the number should be rounded. .TE .SH RETURN The number, rounded to the given precision level. diff --git a/man/man3/tomo-Num.y0.3 b/man/man3/tomo-Num.y0.3 index 7c20e545..6b692de2 100644 --- a/man/man3/tomo-Num.y0.3 +++ b/man/man3/tomo-Num.y0.3 @@ -19,10 +19,10 @@ Computes the Bessel function of the second kind of order 0. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the Bessel function is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the Bessel function is to be calculated. .TE .SH RETURN The Bessel function of the second kind of order 0 of `x`. diff --git a/man/man3/tomo-Num.y1.3 b/man/man3/tomo-Num.y1.3 index 1fee30e7..d1e98bad 100644 --- a/man/man3/tomo-Num.y1.3 +++ b/man/man3/tomo-Num.y1.3 @@ -19,10 +19,10 @@ Computes the Bessel function of the second kind of order 1. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -x Num The number for which the Bessel function is to be calculated. - +lb lb lbx +l l l. +Name Type Description +x Num The number for which the Bessel function is to be calculated. .TE .SH RETURN The Bessel function of the second kind of order 1 of `x`. diff --git a/man/man3/tomo-Path.base_name.3 b/man/man3/tomo-Path.base_name.3 index 3d6e0f07..f557a971 100644 --- a/man/man3/tomo-Path.base_name.3 +++ b/man/man3/tomo-Path.base_name.3 @@ -19,10 +19,10 @@ Returns the base name of the file or directory at the specified path. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file or directory. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file or directory. .TE .SH RETURN The base name of the file or directory. diff --git a/man/man3/tomo-Path.by_line.3 b/man/man3/tomo-Path.by_line.3 index ad08ca33..46a47d8c 100644 --- a/man/man3/tomo-Path.by_line.3 +++ b/man/man3/tomo-Path.by_line.3 @@ -19,10 +19,10 @@ Returns an iterator that can be used to iterate over a file one line at a time, .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file. .TE .SH RETURN An iterator that can be used to get lines from a file one at a time or none if the file couldn't be read. diff --git a/man/man3/tomo-Path.can_execute.3 b/man/man3/tomo-Path.can_execute.3 index 90978a32..53dee69c 100644 --- a/man/man3/tomo-Path.can_execute.3 +++ b/man/man3/tomo-Path.can_execute.3 @@ -19,10 +19,10 @@ Returns whether or not a file can be executed by the current user/group. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file to check. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file to check. .TE .SH RETURN `yes` if the file or directory exists and the current user has execute permissions, otherwise `no`. diff --git a/man/man3/tomo-Path.can_read.3 b/man/man3/tomo-Path.can_read.3 index 919b5312..b3c19a89 100644 --- a/man/man3/tomo-Path.can_read.3 +++ b/man/man3/tomo-Path.can_read.3 @@ -19,10 +19,10 @@ Returns whether or not a file can be read by the current user/group. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file to check. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file to check. .TE .SH RETURN `yes` if the file or directory exists and the current user has read permissions, otherwise `no`. diff --git a/man/man3/tomo-Path.can_write.3 b/man/man3/tomo-Path.can_write.3 index 98e8c0bb..78880c4b 100644 --- a/man/man3/tomo-Path.can_write.3 +++ b/man/man3/tomo-Path.can_write.3 @@ -19,10 +19,10 @@ Returns whether or not a file can be written by the current user/group. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file to check. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file to check. .TE .SH RETURN `yes` if the file or directory exists and the current user has write permissions, otherwise `no`. diff --git a/man/man3/tomo-Path.child.3 b/man/man3/tomo-Path.child.3 index ee0ca448..8e6c4859 100644 --- a/man/man3/tomo-Path.child.3 +++ b/man/man3/tomo-Path.child.3 @@ -19,11 +19,11 @@ Return a path that is a child of another path. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of a directory. - -child Text The name of a child file or directory. - +lb lb lbx +l l l. +Name Type Description +path Path The path of a directory. +child Text The name of a child file or directory. .TE .SH RETURN A new path representing the child. diff --git a/man/man3/tomo-Path.exists.3 b/man/man3/tomo-Path.exists.3 index 5143a4d3..7d03e468 100644 --- a/man/man3/tomo-Path.exists.3 +++ b/man/man3/tomo-Path.exists.3 @@ -19,10 +19,10 @@ Checks if a file or directory exists at the specified path. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path to check. - +lb lb lbx +l l l. +Name Type Description +path Path The path to check. .TE .SH RETURN `True` if the file or directory exists, `False` otherwise. diff --git a/man/man3/tomo-Path.expand_home.3 b/man/man3/tomo-Path.expand_home.3 index b14aff25..0f3ee0d0 100644 --- a/man/man3/tomo-Path.expand_home.3 +++ b/man/man3/tomo-Path.expand_home.3 @@ -19,10 +19,10 @@ For home-based paths (those starting with `~`), expand the path to replace the t .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path to expand. - +lb lb lbx +l l l. +Name Type Description +path Path The path to expand. .TE .SH RETURN If the path does not start with a `~`, then return it unmodified. Otherwise, replace the `~` with an absolute path to the user's home directory. diff --git a/man/man3/tomo-Path.from_components.3 b/man/man3/tomo-Path.from_components.3 index 6ef19089..d20efdd2 100644 --- a/man/man3/tomo-Path.from_components.3 +++ b/man/man3/tomo-Path.from_components.3 @@ -19,10 +19,10 @@ Returns a path built from a list of path components. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -components [Text] A list of path components. - +lb lb lbx +l l l. +Name Type Description +components [Text] A list of path components. .TE .SH RETURN A path representing the given components. diff --git a/man/man3/tomo-Path.glob.3 b/man/man3/tomo-Path.glob.3 index fc8d04b8..1e593035 100644 --- a/man/man3/tomo-Path.glob.3 +++ b/man/man3/tomo-Path.glob.3 @@ -25,10 +25,10 @@ Perform a globbing operation and return a list of matching paths. Some glob spec .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the directory which may contain special globbing characters like \fB*\fR, \fB?\fR, or \fB{...}\fR - +lb lb lbx +l l l. +Name Type Description +path Path The path of the directory which may contain special globbing characters like \fB*\fR, \fB?\fR, or \fB{...}\fR .TE .SH RETURN A list of file paths that match the glob. diff --git a/man/man3/tomo-Path.has_extension.3 b/man/man3/tomo-Path.has_extension.3 index 85b181e1..390015da 100644 --- a/man/man3/tomo-Path.has_extension.3 +++ b/man/man3/tomo-Path.has_extension.3 @@ -19,11 +19,11 @@ Return whether or not a path has a given file extension. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path A path. - -extension Text A file extension (leading \fB.\fR is optional). If empty, the check will test if the file does not have any file extension. - +lb lb lbx +l l l. +Name Type Description +path Path A path. +extension Text A file extension (leading \fB.\fR is optional). If empty, the check will test if the file does not have any file extension. .TE .SH RETURN Whether or not the path has the given extension. diff --git a/man/man3/tomo-Path.is_symlink.3 b/man/man3/tomo-Path.is_symlink.3 index 85db4e43..d38591d0 100644 --- a/man/man3/tomo-Path.is_symlink.3 +++ b/man/man3/tomo-Path.is_symlink.3 @@ -19,10 +19,10 @@ Checks if the path represents a symbolic link. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path to check. - +lb lb lbx +l l l. +Name Type Description +path Path The path to check. .TE .SH RETURN `True` if the path is a symbolic link, `False` otherwise. diff --git a/man/man3/tomo-Path.lines.3 b/man/man3/tomo-Path.lines.3 index cf9a2312..19e48a99 100644 --- a/man/man3/tomo-Path.lines.3 +++ b/man/man3/tomo-Path.lines.3 @@ -19,10 +19,10 @@ Returns a list with the lines of text in a file or returns none if the file coul .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file. .TE .SH RETURN A list of the lines in a file or none if the file couldn't be read. diff --git a/man/man3/tomo-Path.parent.3 b/man/man3/tomo-Path.parent.3 index 7113f4e0..7af4f98f 100644 --- a/man/man3/tomo-Path.parent.3 +++ b/man/man3/tomo-Path.parent.3 @@ -19,10 +19,10 @@ Returns the parent directory of the file or directory at the specified path. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file or directory. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file or directory. .TE .SH RETURN The path of the parent directory. diff --git a/man/man3/tomo-Path.read.3 b/man/man3/tomo-Path.read.3 index 7787b66a..31b32fd2 100644 --- a/man/man3/tomo-Path.read.3 +++ b/man/man3/tomo-Path.read.3 @@ -19,10 +19,10 @@ Reads the contents of the file at the specified path or none if the file could n .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The path of the file to read. - +lb lb lbx +l l l. +Name Type Description +path Path The path of the file to read. .TE .SH RETURN The contents of the file. If the file could not be read, none will be returned. If the file can be read, but is not valid UTF8 data, an error will be raised. diff --git a/man/man3/tomo-Path.sibling.3 b/man/man3/tomo-Path.sibling.3 index 7d4bbd04..10bc821c 100644 --- a/man/man3/tomo-Path.sibling.3 +++ b/man/man3/tomo-Path.sibling.3 @@ -19,11 +19,11 @@ Return a path that is a sibling of another path (i.e. has the same parent, but a .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path A path. - -name Text The name of a sibling file or directory. - +lb lb lbx +l l l. +Name Type Description +path Path A path. +name Text The name of a sibling file or directory. .TE .SH RETURN A new path representing the sibling. diff --git a/man/man3/tomo-Path.unique_directory.3 b/man/man3/tomo-Path.unique_directory.3 index 16df8d8b..7f66fad5 100644 --- a/man/man3/tomo-Path.unique_directory.3 +++ b/man/man3/tomo-Path.unique_directory.3 @@ -19,10 +19,10 @@ Generates a unique directory path based on the given path. Useful for creating t .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The base path for generating the unique directory. The last six letters of this path must be \fBXXXXXX\fR. - +lb lb lbx +l l l. +Name Type Description +path Path The base path for generating the unique directory. The last six letters of this path must be \fBXXXXXX\fR. .TE .SH RETURN A unique directory path after creating the directory. diff --git a/man/man3/tomo-Path.write_unique.3 b/man/man3/tomo-Path.write_unique.3 index 49d9aa78..d7763bdb 100644 --- a/man/man3/tomo-Path.write_unique.3 +++ b/man/man3/tomo-Path.write_unique.3 @@ -19,11 +19,11 @@ Writes the given text to a unique file path based on the specified path. The fil .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The base path for generating the unique file. This path must include the string \fBXXXXXX\fR in the file base name. - -text Text The text to write to the file. - +lb lb lbx +l l l. +Name Type Description +path Path The base path for generating the unique file. This path must include the string \fBXXXXXX\fR in the file base name. +text Text The text to write to the file. .TE .SH RETURN The path of the newly created unique file. diff --git a/man/man3/tomo-Path.write_unique_bytes.3 b/man/man3/tomo-Path.write_unique_bytes.3 index 5d08812e..6bb4abd0 100644 --- a/man/man3/tomo-Path.write_unique_bytes.3 +++ b/man/man3/tomo-Path.write_unique_bytes.3 @@ -19,11 +19,11 @@ Writes the given bytes to a unique file path based on the specified path. The fi .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -path Path The base path for generating the unique file. This path must include the string \fBXXXXXX\fR in the file base name. - -bytes [Byte] The bytes to write to the file. - +lb lb lbx +l l l. +Name Type Description +path Path The base path for generating the unique file. This path must include the string \fBXXXXXX\fR in the file base name. +bytes [Byte] The bytes to write to the file. .TE .SH RETURN The path of the newly created unique file. diff --git a/man/man3/tomo-Table.clear.3 b/man/man3/tomo-Table.clear.3 index 18938cb1..1e2816dd 100644 --- a/man/man3/tomo-Table.clear.3 +++ b/man/man3/tomo-Table.clear.3 @@ -19,10 +19,10 @@ Removes all key-value pairs from the table. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t &{K:V} The reference to the table. - +lb lb lbx +l l l. +Name Type Description +t &{K:V} The reference to the table. .TE .SH RETURN Nothing. diff --git a/man/man3/tomo-Table.difference.3 b/man/man3/tomo-Table.difference.3 index 999f0e55..2db0def3 100644 --- a/man/man3/tomo-Table.difference.3 +++ b/man/man3/tomo-Table.difference.3 @@ -19,11 +19,11 @@ Return a table whose key/value pairs correspond to keys only present in one tabl .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The base table. - -other {K:V} The other table. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The base table. +other {K:V} The other table. .TE .SH RETURN A table containing the common key/value pairs whose keys only appear in one table. diff --git a/man/man3/tomo-Table.get.3 b/man/man3/tomo-Table.get.3 index e12143f1..87dc40ec 100644 --- a/man/man3/tomo-Table.get.3 +++ b/man/man3/tomo-Table.get.3 @@ -19,11 +19,11 @@ Retrieves the value associated with a key, or returns `none` if the key is not p .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The table. - -key K The key whose associated value is to be retrieved. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The table. +key K The key whose associated value is to be retrieved. .TE .SH RETURN The value associated with the key or `none` if the key is not found. diff --git a/man/man3/tomo-Table.get_or_set.3 b/man/man3/tomo-Table.get_or_set.3 index a5d100c4..61c84305 100644 --- a/man/man3/tomo-Table.get_or_set.3 +++ b/man/man3/tomo-Table.get_or_set.3 @@ -19,12 +19,12 @@ If the given key is in the table, return the associated value. Otherwise, insert .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t &{K:V} The table. - -key K The key whose associated value is to be retrieved. - -default V The default value to insert and return if the key is not present in the table. - +lb lb lbx +l l l. +Name Type Description +t &{K:V} The table. +key K The key whose associated value is to be retrieved. +default V The default value to insert and return if the key is not present in the table. .TE .SH RETURN Either the value associated with the key (if present) or the default value. The table will be mutated if the key is not already present. diff --git a/man/man3/tomo-Table.has.3 b/man/man3/tomo-Table.has.3 index 5bfb9554..45936f89 100644 --- a/man/man3/tomo-Table.has.3 +++ b/man/man3/tomo-Table.has.3 @@ -19,11 +19,11 @@ Checks if the table contains a specified key. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The table. - -key K The key to check for presence. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The table. +key K The key to check for presence. .TE .SH RETURN `yes` if the key is present, `no` otherwise. diff --git a/man/man3/tomo-Table.intersection.3 b/man/man3/tomo-Table.intersection.3 index 67b4c0d3..bbd8497d 100644 --- a/man/man3/tomo-Table.intersection.3 +++ b/man/man3/tomo-Table.intersection.3 @@ -19,11 +19,11 @@ Return a table with only the matching key/value pairs that are common to both ta .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The base table. - -other {K:V} The other table. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The base table. +other {K:V} The other table. .TE .SH RETURN A table containing the common key/value pairs shared between two tables. diff --git a/man/man3/tomo-Table.remove.3 b/man/man3/tomo-Table.remove.3 index d41c2ec0..5f5b06b7 100644 --- a/man/man3/tomo-Table.remove.3 +++ b/man/man3/tomo-Table.remove.3 @@ -19,11 +19,11 @@ Removes the key-value pair associated with a specified key. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The reference to the table. - -key K The key of the key-value pair to remove. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The reference to the table. +key K The key of the key-value pair to remove. .TE .SH RETURN Nothing. diff --git a/man/man3/tomo-Table.set.3 b/man/man3/tomo-Table.set.3 index f321f8eb..ba904c29 100644 --- a/man/man3/tomo-Table.set.3 +++ b/man/man3/tomo-Table.set.3 @@ -19,12 +19,12 @@ Sets or updates the value associated with a specified key. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The reference to the table. - -key K The key to set or update. - -value V The value to associate with the key. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The reference to the table. +key K The key to set or update. +value V The value to associate with the key. .TE .SH RETURN Nothing. diff --git a/man/man3/tomo-Table.with.3 b/man/man3/tomo-Table.with.3 index 740a1058..c2285343 100644 --- a/man/man3/tomo-Table.with.3 +++ b/man/man3/tomo-Table.with.3 @@ -19,11 +19,11 @@ Return a copy of a table with values added from another table .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The base table. - -other {K:V} The other table from which new key/value pairs will be added. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The base table. +other {K:V} The other table from which new key/value pairs will be added. .TE .SH RETURN The original table, but with values from the other table added. diff --git a/man/man3/tomo-Table.with_fallback.3 b/man/man3/tomo-Table.with_fallback.3 index 7ef520f0..72dd0589 100644 --- a/man/man3/tomo-Table.with_fallback.3 +++ b/man/man3/tomo-Table.with_fallback.3 @@ -19,11 +19,11 @@ Return a copy of a table with a different fallback table. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The table whose fallback will be replaced. - -fallback {K:V}? The new fallback table value. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The table whose fallback will be replaced. +fallback {K:V}? The new fallback table value. .TE .SH RETURN The original table with a different fallback. diff --git a/man/man3/tomo-Table.without.3 b/man/man3/tomo-Table.without.3 index c71b96a3..80154a3a 100644 --- a/man/man3/tomo-Table.without.3 +++ b/man/man3/tomo-Table.without.3 @@ -19,11 +19,11 @@ Return a copy of a table, but without any of the exact key/value pairs found in .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -t {K:V} The base table. - -other {K:V} The other table whose key/value pairs will be omitted. - +lb lb lbx +l l l. +Name Type Description +t {K:V} The base table. +other {K:V} The other table whose key/value pairs will be omitted. .TE .SH RETURN The original table, but without the key/value pairs from the other table. diff --git a/man/man3/tomo-Text.as_c_string.3 b/man/man3/tomo-Text.as_c_string.3 index 2bdf0b11..5369905d 100644 --- a/man/man3/tomo-Text.as_c_string.3 +++ b/man/man3/tomo-Text.as_c_string.3 @@ -19,10 +19,10 @@ Converts a `Text` value to a C-style string. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be converted to a C-style string. - +lb lb lbx +l l l. +Name Type Description +text Text The text to be converted to a C-style string. .TE .SH RETURN A C-style string (`CString`) representing the text. diff --git a/man/man3/tomo-Text.at.3 b/man/man3/tomo-Text.at.3 index 3396ae19..a1d30371 100644 --- a/man/man3/tomo-Text.at.3 +++ b/man/man3/tomo-Text.at.3 @@ -19,11 +19,11 @@ Get the graphical cluster at a given index. This is similar to `str[i]` with ASC .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text from which to get a cluster. - -index Int The index of the graphical cluster (1-indexed). - +lb lb lbx +l l l. +Name Type Description +text Text The text from which to get a cluster. +index Int The index of the graphical cluster (1-indexed). .TE .SH RETURN A `Text` with the single graphical cluster at the given index. diff --git a/man/man3/tomo-Text.by_line.3 b/man/man3/tomo-Text.by_line.3 index f1fa17bc..2abc4c23 100644 --- a/man/man3/tomo-Text.by_line.3 +++ b/man/man3/tomo-Text.by_line.3 @@ -19,10 +19,10 @@ Returns an iterator function that can be used to iterate over the lines in a tex .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be iterated over, line by line. - +lb lb lbx +l l l. +Name Type Description +text Text The text to be iterated over, line by line. .TE .SH RETURN An iterator function that returns one line at a time, until it runs out and returns `none`. diff --git a/man/man3/tomo-Text.codepoint_names.3 b/man/man3/tomo-Text.codepoint_names.3 index b91baba4..320af3f6 100644 --- a/man/man3/tomo-Text.codepoint_names.3 +++ b/man/man3/tomo-Text.codepoint_names.3 @@ -19,10 +19,10 @@ Returns a list of the names of each codepoint in the text. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text from which to extract codepoint names. - +lb lb lbx +l l l. +Name Type Description +text Text The text from which to extract codepoint names. .TE .SH RETURN A list of codepoint names (`[Text]`). diff --git a/man/man3/tomo-Text.from.3 b/man/man3/tomo-Text.from.3 index 30e62958..53df8278 100644 --- a/man/man3/tomo-Text.from.3 +++ b/man/man3/tomo-Text.from.3 @@ -19,11 +19,11 @@ Get a slice of the text, starting at the given position. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be sliced. - -first Int The index to begin the slice. - +lb lb lbx +l l l. +Name Type Description +text Text The text to be sliced. +first Int The index to begin the slice. .TE .SH RETURN The text from the given grapheme cluster to the end of the text. diff --git a/man/man3/tomo-Text.from_c_string.3 b/man/man3/tomo-Text.from_c_string.3 index 1144001b..32e6e4f5 100644 --- a/man/man3/tomo-Text.from_c_string.3 +++ b/man/man3/tomo-Text.from_c_string.3 @@ -19,10 +19,10 @@ Converts a C-style string to a `Text` value. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -str CString The C-style string to be converted. - +lb lb lbx +l l l. +Name Type Description +str CString The C-style string to be converted. .TE .SH RETURN A `Text` value representing the C-style string. diff --git a/man/man3/tomo-Text.from_codepoint_names.3 b/man/man3/tomo-Text.from_codepoint_names.3 index 2951b0f2..ac0bf01b 100644 --- a/man/man3/tomo-Text.from_codepoint_names.3 +++ b/man/man3/tomo-Text.from_codepoint_names.3 @@ -19,10 +19,10 @@ Returns text that has the given codepoint names (according to the Unicode specif .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -codepoint_names [Text] The names of each codepoint in the desired text (case-insentive). - +lb lb lbx +l l l. +Name Type Description +codepoint_names [Text] The names of each codepoint in the desired text (case-insentive). .TE .SH RETURN A new text with the specified codepoints after normalization has been applied. Any invalid names are ignored. diff --git a/man/man3/tomo-Text.from_utf16.3 b/man/man3/tomo-Text.from_utf16.3 index ba92c691..be046ddb 100644 --- a/man/man3/tomo-Text.from_utf16.3 +++ b/man/man3/tomo-Text.from_utf16.3 @@ -19,10 +19,10 @@ Returns text that has been constructed from the given UTF16 sequence. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -bytes [Int16] The UTF-16 integers of the desired text. - +lb lb lbx +l l l. +Name Type Description +bytes [Int16] The UTF-16 integers of the desired text. .TE .SH RETURN A new text based on the input UTF16 sequence after normalization has been applied. diff --git a/man/man3/tomo-Text.from_utf32.3 b/man/man3/tomo-Text.from_utf32.3 index 526545fb..7f78c191 100644 --- a/man/man3/tomo-Text.from_utf32.3 +++ b/man/man3/tomo-Text.from_utf32.3 @@ -19,10 +19,10 @@ Returns text that has been constructed from the given UTF32 codepoints. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -codepoints [Int32] The UTF32 codepoints in the desired text. - +lb lb lbx +l l l. +Name Type Description +codepoints [Int32] The UTF32 codepoints in the desired text. .TE .SH RETURN A new text with the specified codepoints after normalization has been applied. diff --git a/man/man3/tomo-Text.from_utf8.3 b/man/man3/tomo-Text.from_utf8.3 index 25ab2897..497a6107 100644 --- a/man/man3/tomo-Text.from_utf8.3 +++ b/man/man3/tomo-Text.from_utf8.3 @@ -19,10 +19,10 @@ Returns text that has been constructed from the given UTF8 bytes. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -bytes [Byte] The UTF-8 bytes of the desired text. - +lb lb lbx +l l l. +Name Type Description +bytes [Byte] The UTF-8 bytes of the desired text. .TE .SH RETURN A new text based on the input UTF8 bytes after normalization has been applied. diff --git a/man/man3/tomo-Text.has.3 b/man/man3/tomo-Text.has.3 index a562b908..3397cc2b 100644 --- a/man/man3/tomo-Text.has.3 +++ b/man/man3/tomo-Text.has.3 @@ -19,11 +19,11 @@ Checks if the `Text` contains some target text. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be searched. - -target Text The text to search for. - +lb lb lbx +l l l. +Name Type Description +text Text The text to be searched. +target Text The text to search for. .TE .SH RETURN `yes` if the target text is found, `no` otherwise. diff --git a/man/man3/tomo-Text.join.3 b/man/man3/tomo-Text.join.3 index d6b7d15a..0eccb241 100644 --- a/man/man3/tomo-Text.join.3 +++ b/man/man3/tomo-Text.join.3 @@ -19,11 +19,11 @@ Joins a list of text pieces with a specified glue. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -glue Text The text used to join the pieces. - -pieces [Text] The list of text pieces to be joined. - +lb lb lbx +l l l. +Name Type Description +glue Text The text used to join the pieces. +pieces [Text] The list of text pieces to be joined. .TE .SH RETURN A single `Text` value with the pieces joined by the glue. diff --git a/man/man3/tomo-Text.lines.3 b/man/man3/tomo-Text.lines.3 index 2085d7d9..7c53ed54 100644 --- a/man/man3/tomo-Text.lines.3 +++ b/man/man3/tomo-Text.lines.3 @@ -19,10 +19,10 @@ Splits the text into a list of lines of text, preserving blank lines, ignoring t .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be split into lines. - +lb lb lbx +l l l. +Name Type Description +text Text The text to be split into lines. .TE .SH RETURN A list of substrings resulting from the split. diff --git a/man/man3/tomo-Text.repeat.3 b/man/man3/tomo-Text.repeat.3 index 70b49c03..d917f96c 100644 --- a/man/man3/tomo-Text.repeat.3 +++ b/man/man3/tomo-Text.repeat.3 @@ -19,11 +19,11 @@ Repeat some text multiple times. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to repeat. - -count Int The number of times to repeat it. (Negative numbers are equivalent to zero). - +lb lb lbx +l l l. +Name Type Description +text Text The text to repeat. +count Int The number of times to repeat it. (Negative numbers are equivalent to zero). .TE .SH RETURN The text repeated the given number of times. diff --git a/man/man3/tomo-Text.replace.3 b/man/man3/tomo-Text.replace.3 index 7636fede..8631f32a 100644 --- a/man/man3/tomo-Text.replace.3 +++ b/man/man3/tomo-Text.replace.3 @@ -19,12 +19,12 @@ Replaces occurrences of a target text with a replacement text. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text in which to perform replacements. - -target Text The target text to be replaced. - -replacement Text The text to replace the target with. - +lb lb lbx +l l l. +Name Type Description +text Text The text in which to perform replacements. +target Text The target text to be replaced. +replacement Text The text to replace the target with. .TE .SH RETURN The text with occurrences of the target replaced. diff --git a/man/man3/tomo-Text.reversed.3 b/man/man3/tomo-Text.reversed.3 index 21b2be4e..821e1ab3 100644 --- a/man/man3/tomo-Text.reversed.3 +++ b/man/man3/tomo-Text.reversed.3 @@ -19,10 +19,10 @@ Return a text that has the grapheme clusters in reverse order. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to reverse. - +lb lb lbx +l l l. +Name Type Description +text Text The text to reverse. .TE .SH RETURN A reversed version of the text. diff --git a/man/man3/tomo-Text.to.3 b/man/man3/tomo-Text.to.3 index 66fde6e1..2507311a 100644 --- a/man/man3/tomo-Text.to.3 +++ b/man/man3/tomo-Text.to.3 @@ -19,11 +19,11 @@ Get a slice of the text, ending at the given position. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be sliced. - -last Int The index of the last grapheme cluster to include (1-indexed). - +lb lb lbx +l l l. +Name Type Description +text Text The text to be sliced. +last Int The index of the last grapheme cluster to include (1-indexed). .TE .SH RETURN The text up to and including the given grapheme cluster. diff --git a/man/man3/tomo-Text.translate.3 b/man/man3/tomo-Text.translate.3 index fe944018..2cac6a47 100644 --- a/man/man3/tomo-Text.translate.3 +++ b/man/man3/tomo-Text.translate.3 @@ -19,11 +19,11 @@ Takes a table mapping target texts to their replacements and performs all the re .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be translated. - -translations {Text:Text} A table mapping from target text to its replacement. - +lb lb lbx +l l l. +Name Type Description +text Text The text to be translated. +translations {Text:Text} A table mapping from target text to its replacement. .TE .SH RETURN The text with all occurrences of the targets replaced with their corresponding replacement text. diff --git a/man/man3/tomo-Text.utf16.3 b/man/man3/tomo-Text.utf16.3 index d8f00d22..f65d05d2 100644 --- a/man/man3/tomo-Text.utf16.3 +++ b/man/man3/tomo-Text.utf16.3 @@ -19,10 +19,10 @@ Returns a list of Unicode code points for UTF16 encoding of the text. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text from which to extract Unicode code points. - +lb lb lbx +l l l. +Name Type Description +text Text The text from which to extract Unicode code points. .TE .SH RETURN A list of 16-bit integer Unicode code points (`[Int16]`). diff --git a/man/man3/tomo-Text.utf32.3 b/man/man3/tomo-Text.utf32.3 index cf0d4a05..d43d31e7 100644 --- a/man/man3/tomo-Text.utf32.3 +++ b/man/man3/tomo-Text.utf32.3 @@ -19,10 +19,10 @@ Returns a list of Unicode code points for UTF32 encoding of the text. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text from which to extract Unicode code points. - +lb lb lbx +l l l. +Name Type Description +text Text The text from which to extract Unicode code points. .TE .SH RETURN A list of 32-bit integer Unicode code points (`[Int32]`). diff --git a/man/man3/tomo-Text.utf8.3 b/man/man3/tomo-Text.utf8.3 index 05544cc1..5490c882 100644 --- a/man/man3/tomo-Text.utf8.3 +++ b/man/man3/tomo-Text.utf8.3 @@ -19,10 +19,10 @@ Converts a `Text` value to a list of bytes representing a UTF8 encoding of the t .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to be converted to UTF8 bytes. - +lb lb lbx +l l l. +Name Type Description +text Text The text to be converted to UTF8 bytes. .TE .SH RETURN A list of bytes (`[Byte]`) representing the text in UTF8 encoding. diff --git a/man/man3/tomo-Text.width.3 b/man/man3/tomo-Text.width.3 index 00e32fcf..ec6307e2 100644 --- a/man/man3/tomo-Text.width.3 +++ b/man/man3/tomo-Text.width.3 @@ -19,10 +19,10 @@ Returns the display width of the text as seen in a terminal with appropriate fon .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text whose length you want. - +lb lb lbx +l l l. +Name Type Description +text Text The text whose length you want. .TE .SH RETURN An integer representing the display width of the text. diff --git a/man/man3/tomo-Text.without_prefix.3 b/man/man3/tomo-Text.without_prefix.3 index 43aa6e5e..d1b902da 100644 --- a/man/man3/tomo-Text.without_prefix.3 +++ b/man/man3/tomo-Text.without_prefix.3 @@ -19,11 +19,11 @@ Returns the text with a given prefix removed (if present). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to remove the prefix from. - -prefix Text The prefix to remove. - +lb lb lbx +l l l. +Name Type Description +text Text The text to remove the prefix from. +prefix Text The prefix to remove. .TE .SH RETURN A text without the given prefix (if present) or the unmodified text if the prefix is not present. diff --git a/man/man3/tomo-Text.without_suffix.3 b/man/man3/tomo-Text.without_suffix.3 index 9b45d624..b905bee8 100644 --- a/man/man3/tomo-Text.without_suffix.3 +++ b/man/man3/tomo-Text.without_suffix.3 @@ -19,11 +19,11 @@ Returns the text with a given suffix removed (if present). .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -text Text The text to remove the suffix from. - -suffix Text The suffix to remove. - +lb lb lbx +l l l. +Name Type Description +text Text The text to remove the suffix from. +suffix Text The suffix to remove. .TE .SH RETURN A text without the given suffix (if present) or the unmodified text if the suffix is not present. diff --git a/man/man3/tomo-at_cleanup.3 b/man/man3/tomo-at_cleanup.3 index d8d07faa..556178c9 100644 --- a/man/man3/tomo-at_cleanup.3 +++ b/man/man3/tomo-at_cleanup.3 @@ -19,10 +19,10 @@ Register a function that runs at cleanup time for Tomo programs. Cleanup time ha .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -fn func() A function to run at cleanup time. - +lb lb lbx +l l l. +Name Type Description +fn func() A function to run at cleanup time. .TE .SH RETURN Nothing. diff --git a/man/man3/tomo-fail.3 b/man/man3/tomo-fail.3 index b5f0b502..27eb0660 100644 --- a/man/man3/tomo-fail.3 +++ b/man/man3/tomo-fail.3 @@ -19,10 +19,10 @@ Prints a message to the console, aborts the program, and prints a stack trace. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -message Text The error message to print. - +lb lb lbx +l l l. +Name Type Description +message Text The error message to print. .TE .SH RETURN Nothing, aborts the program. diff --git a/man/man3/tomo-getenv.3 b/man/man3/tomo-getenv.3 index 6b4a7bbf..71f828eb 100644 --- a/man/man3/tomo-getenv.3 +++ b/man/man3/tomo-getenv.3 @@ -19,10 +19,10 @@ Gets an environment variable. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -name Text The name of the environment variable to get. - +lb lb lbx +l l l. +Name Type Description +name Text The name of the environment variable to get. .TE .SH RETURN If set, the environment variable's value, otherwise, `none`. diff --git a/man/man3/tomo-setenv.3 b/man/man3/tomo-setenv.3 index a2bc01dd..56ab32bf 100644 --- a/man/man3/tomo-setenv.3 +++ b/man/man3/tomo-setenv.3 @@ -19,11 +19,11 @@ Sets an environment variable. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -name Text The name of the environment variable to set. - -value Text? The new value of the environment variable. If \fBnone\fR, then the environment variable will be unset. - +lb lb lbx +l l l. +Name Type Description +name Text The name of the environment variable to set. +value Text? The new value of the environment variable. If \fBnone\fR, then the environment variable will be unset. .TE .SH RETURN Nothing. diff --git a/man/man3/tomo-sleep.3 b/man/man3/tomo-sleep.3 index a652c6e8..baea8966 100644 --- a/man/man3/tomo-sleep.3 +++ b/man/man3/tomo-sleep.3 @@ -19,10 +19,10 @@ Pause execution for a given number of seconds. .TS allbox; -lb lb lbx lb -l l l l. -Name Type Description Default -seconds Num How many seconds to sleep for. - +lb lb lbx +l l l. +Name Type Description +seconds Num How many seconds to sleep for. .TE .SH RETURN Nothing. |
