Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 43 |
Nodes: | 6 (0 / 6) |
Uptime: | 94:09:05 |
Calls: | 290 |
Calls today: | 1 |
Files: | 904 |
Messages: | 76,378 |
On 22/11/2024 9:11 pm, minforth wrote:
Must be bad weather and boring where you live. ;-)
You're welcome :)
If you have a lot of strings to juggle, treat yourself
to a string stack. Forth is all about flexibility, right?
A relative never cleaned their email inbox. For the last
month any message sent bounced with 'mailbox full'. Their
solution was to pay for a bigger inbox.
If you have a lot of strings to juggle, treat yourself
to a string stack. Forth is all about flexibility, right?
When parsing commands for my engineering tools, strings
are indispensable. But I use a ringbuffer, not a stack.
On Fri, 22 Nov 2024 11:35:01 +0000, mhx wrote:
When parsing commands for my engineering tools, strings
are indispensable. But I use a ringbuffer, not a stack.
A ring buffer for holding strings is a classic for Forth
systems. For larger string sequences, such as data in XML
format, ring buffers tend to be overwritten. But that's
an application-sprecific implementation detail, not a
topic for a standard.