summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2026-05-24docs: add stack operations documentationPaul Buetow
Document dup, swap, pop, show/showstack/print, and clear with: - Stack visualizations for each operation - CLI examples with expected output - Practical use cases (self-comparison, reordering, debugging) - Error handling behavior - Combined examples showing multi-operator workflows
2026-05-24docs: add log operators documentation (lg, log, ln)Paul Buetow
Cover lg (log base 2), log (log base 10), and ln (natural log) with: - Mathematical explanations - RPN examples from live testing - Edge cases (zero and negative number errors) - Practical use cases (information theory, decibels, pH, growth) - Metric handling notes - Implementation references
2026-05-24docs: add hyper operators documentationPaul Buetow
Cover all nine hyper operators ([+], [*], [-], [/], [^], [%], [lg], [log], [ln]) with examples, metric behavior, practical use cases, and edge cases.
2026-05-24docs: add comparison operators documentationPaul Buetow
Cover all 6 comparison operators (gt/>/lt</gte>=/lte<=/eq==/neq!=), truth tables, metric-aware comparisons, boolean coercion in arithmetic, and practical use cases (threshold checks, range validation, guards).
2026-05-24docs: add fast-power.md documenting ** operatorPaul Buetow
Cover binary exponentiation algorithm, syntax, examples, ** vs ^ comparison, edge cases, and performance notes.
2026-05-24docs: add basic arithmetic RPN operators referencePaul Buetow
Document all six basic arithmetic operators (+, -, *, /, ^, %) with: - RPN explanation and stack visualization - Each operator with examples and results - Multi-operand and nested expression examples - Practical use cases (geometry, compound calculations) - Edge cases (division/modulo by zero, negative results)
2026-05-24docs: add percentage calculations guidePaul Buetow
Test all three percentage forms (X% of Y, X is what% of Y, X is Y% of what) and document syntax, examples, practical use cases, edge cases, output format, and known limitations.