| Age | Commit message (Collapse) | Author |
|
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
|
|
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
|
|
Cover all nine hyper operators ([+], [*], [-], [/], [^], [%],
[lg], [log], [ln]) with examples, metric behavior, practical
use cases, and edge cases.
|
|
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).
|
|
Cover binary exponentiation algorithm, syntax, examples,
** vs ^ comparison, edge cases, and performance notes.
|
|
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)
|
|
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.
|