Peter-Jacob

Results 39 comments of Peter-Jacob

I took this out of the Regina manual: ``` The non-strict comparative operators will ignore leading or trailing blanks for string comparisons, and leading zeros for numeric comparisons. ``` are...

I believe we even added in BREXX the stripping-out of blanks in the middle of a string. so " abc def "="abcdef" quite frankly it's not just a performance killer...

Thanks, René for the detailed explanations. I have started with string comparisons and might have something in the next couple of days.

I added the first sample of non restrictive comparison: commit 34e8151c1954bf271196c8081854080eb7fda709 . As the compiler doesn't support the distinction of restrictive vs non-restrictive we can only use it in an...

I didn’t realize, that it is already compiled into different opcodes: if a=b then say "equal (strict compare)" if a==b then say "equal (strict == compare)" become: ``` * Line...

Just noticed this old issue from three years ago. Is it still something we need to look into?

In my opinion, we don't need this at level B. For level C, we could implement it in one of two ways: 1. Duplicate the string comparison instructions and apply...

I’ve just discovered I started something over three years ago. Unsurprisingly, my memory has long since paged it out — and is unable to page it back in. Probably best...

I'll check the BREXX coding on it, maybe I can "adopt" the idea. Well, there seems nothing special except file-name is stdin or stdout. Do you know if the default...

I think the problem arises from the incorrect translation of an 'nnnn'x hex value, this is part of the asm (ts_c2x) ``` * Line 7: {IF} c2x('0123'x) \= '0123' *...