From 597392727facf915d930f252ac206a3653f8745d Mon Sep 17 00:00:00 2001 From: Jacob Signorovitch Date: Tue, 14 Jan 2025 14:55:19 -0500 Subject: [PATCH] Added abbreviations. --- ABV.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ABV.md diff --git a/ABV.md b/ABV.md new file mode 100644 index 0000000..41db6b0 --- /dev/null +++ b/ABV.md @@ -0,0 +1,26 @@ +# One-letter abbreviations + +These are highly context-dependent in their meaning, but in general: + +|Letter|Meaning(s)| +|---|---| +|`a`|Accumulator, generic first variable in sequence| +|`b`|See `a` above| +|`c`|Current value, see `a` above| +|`d`|Difference, delta| +|`e`|Expression, exception, error, event| +|`f`|File, function| +|`g`|Also a function| +|`i`|Index, iterator, imaginary| +|`j`|Also an index, also imaginary| +|`l`|Length, list, long, last| +|`n`|Number| +|`o`|Object, out| +|`p`|Pointer| +|`r`|Return value, result| +|`s`|Size| +|`t`|Time, period| +|`v`|Vector, variable| +|`x`|First field of a vector, generic first variable in sequence, literally anything else| +|`y`|Second field of a vector, see `x` above| +|`z`|Third field of a vector, see `x` above, complex number|