When first looking at Rebol's source code I thought it strange there weren't "infix PATH!s". A WORD! would run either a prefix function or an infix function. But not a PATH!. There was a place where it would be, and it was just an error.
One might argue whether infix functions "actually need" refinements. But consider instead....picking operators out of contexts seems an uncontroversial need. Here's a survey of responses to that case: Rebol2 gives a cryptic error, R3-Alpha gives a slightly less cryptic error, and Red brings its own, uh..."personality":
rebol2>> o: make object! [plus: :+]
rebol2>> 1 o/plus 2
** Script Error: plus expected value2 argument of type: number pair...
r3-alpha>> o: make object! [plus: :+]
== make object! [
plus: op!
]
r3-alpha>> 1 o/plus 2
** Script error: op! type is not allowed here
red>> o: make object! [plus: :+]
== make object! [
plus: make op! [[
"Returns the sum of ...
red>> 1 o/plus 2
== 2
But it's legitimate to want this. For instance: in the %httpd.reb
code, there was a variable holding the "HTTP Method", which collided with the new infix METHOD. But since METHOD quotes the left hand side to know where to bind into, you can't just say my-meth: lib/method [...] [...]
and have it work.
...but I have an alternative idea...
I'll explain why I don't think undecorated paths should dispatch infix in a moment. But first, my alternative solution, which is basically 99% as good...yet actually (I think) feasible:
Give the user an operator that can sense the evaluative semantics needed of the left hand side, guided by the right, to explicitly declare an infix dispatch, e.g.
my-meth: -> lib/method [...] [...]
I'm suggesting using the right pointing arrow for "pushing" the left hand side into the right. It kind of goes along with the current use of a left-pointing arrow for packing up the right side and pushing it to the left...which is also infix-related.
This operator would rely on some weird magic that doesn't exist yet. It would have to decide its left hand side parameter convention after it was already running and looking at its right hand side. Really it is like a function with a left-hand variadic side, where during invocation it can actually cause a varying amount of code on the left to execute based on partial evaluations of the right, which it then runs more of after. If such mechanics were used carelessly they could really confuse left-to-right ordering...though FYI, you can see Rebol is already not purely left to right.
You might want to use this operator even with non-infix functions, to effectively infix them off-the-cuff:
>> 5 + 5 -> subtract 7
== 3
So why is this better than just implementing infix pathing?
You can probably understand by looking at a very simple case from the tests:
e: trap [do make block! ":a"]
e/id = 'not-bound
But don't read it on two lines. Read it on one.
e: trap [do make block! ":a"] e/id = 'not-bound
Now imagine that you are the evaluator. You've got a SET-WORD! for E: pending on the stack, but haven't assigned it yet. You've also got a WORD! for invoking the trap action on the pending on the stack, but you haven't invoked that yet either. Instead you're gathering TRAP's argument to run.
You've just seen the BLOCK!. Now you notice a PATH! of e/id
pending. What you want to know is if that's some kind of infix operation that has an interest in influencing the operation. It might want to quote the block, or it might want to force some kind of completion of the left hand side.
But E could be anything, here. e
could be a DATE!, a STRUCT!, an IMAGE! or other user defined type. Yet somehow we expect the path dispatch process to give back a meaningful answer about its interest in code to its left.
- In this case, whatever we learn in this path dispatch we're going to have to throw away. E is going to change.
- While word lookup is done through a system mechanism with limited sources of errors, the path dispatch code is arbitrary and can generate errors for pretty much any reason. Trapping those errors is not cheap in C-like systems: each setjmp() to wrap them costs something. All for a path evaluation you're going to have to run again (though you wouldn't need an error trap, since you'd be willing to have it actually fail).
- Imagining that you even could cache the results of a first path evaluation to reuse again (how would you know?), the dispatch is imperative code. Asking it to guarantee it returns the same result every time could be error prone even if it was a desirable goal.
- Plus on top of that absence of guarantee, you can be sure that if any user GROUP!s were used it wouldn't promise to return the same thing a second time.
One might propose some sort of limited, light PATH! evaluation which "only works for some types". So it could recognize picking an ANY-CONTEXT!. But that sounds...bad. Fewer flaky workarounds are needed, not more.
What does the operator buy us?
It gives explicit advance notice that you think the thing on the right is an ACTION! (and can error if it isn't).
It gives permission to do the path evaluation once-and-only-once on the right hand side, prior to making decisions about parameter conventions on the left. (Arguably it could be giving permission to evaluate the right before any remaining argument gathering on the left.)
The right could also be a WORD!, or maybe a GROUP!
1 + 2 -> (either x [:subtract] [:add]) 7
An operator of this type is inspired by developments on ME and MY, as well as the advancements in MATCH. It's trickier than those...which are still somewhat experimental themselves. But I think it is doable, and it seems like time to set the course for this and forget about undecorated infix dispatch.
If a path is executed and looks up to an infix function without the operator, it should error as it does today. But it should tell you about the operator so you can use it!