Re: [Bug-apl] ⎕RE merged

2017-10-09 Thread Elias Mårtenson
One more bug: The call to pcre2_compile_32 should be changed from: code = pcre2_compile_32(pattern_ucs, pattern.size(), PCRE2_NO_UTF_CHECK | flags, &error_code, &error_offset, 0); To: code = pcre2_compile_32(pattern_ucs, pattern.size()

Re: [Bug-apl] Monadic form of ↓

2017-10-09 Thread Jay Foad
On 9 October 2017 at 04:56, Elias Mårtenson wrote: > Currently, monadic ↑ acts as if it was called dyadically with 1 as its > left argument, > That's not quite true: ⍴⍴1↑'ABC' 1 ⍴⍴↑'ABC' 0 while monadic ↓ raises a VALENCE ERROR. In almost every single case where I > have used ↓, it

Re: [Bug-apl] ⎕RE merged

2017-10-09 Thread Jay Foad
Could you please update https://www.gnu.org/software/apl/apl.html ? Or will it update automatically in due course? Thanks, Jay. On 8 October 2017 at 17:47, Juergen Sauermann wrote: > Hi, > > I have merged Elias' *⎕RE* implementation into GNU APL. > Thanks, Elias, for contributing it. See *'info

Re: [Bug-apl] Monadic form of ↓

2017-10-09 Thread Elias Mårtenson
I was thinking about the usefulness of a monadic ↓ in terms of the new regexp feature. In the current version, when using subexpressions, the return value is always 1+the number of subexpressions, where the first one is always the full matched string. Monadic ↓ would be a neat way of dropping that

Re: [Bug-apl] Monadic form of ↓

2017-10-09 Thread Jay Foad
On 9 October 2017 at 10:06, Elias Mårtenson wrote: > In GNU APL, I'd use ⊂⍤1 to achieve Split. Is that the most efficient way? > > Either that or ⊂[2] (or in general ⊂[n] where n is the rank of the argument).

Re: [Bug-apl] Monadic form of ↓

2017-10-09 Thread Elias Mårtenson
On 9 October 2017 at 17:32, Jay Foad wrote: > On 9 October 2017 at 10:06, Elias Mårtenson wrote: > >> In GNU APL, I'd use ⊂⍤1 to achieve Split. Is that the most efficient way? >> >> > Either that or ⊂[2] (or in general ⊂[n] where n is the rank of the > argument). > Thank you. I learned somethin

Re: [Bug-apl] ⎕RE merged

2017-10-09 Thread Elias Mårtenson
One more issue. The last snippet in the info manual for regexp (great work, and thanks for doing it, by the way) looks really weird, probably because the content is too wide. Regards, Elias On 9 October 2017 at 17:02, Jay Foad wrote: > Could you please update https://www.gnu.org/software/apl/ap