User-defined binary functions used infix

Hi guys,

is there any method for using a binary user-defined function infix between actual argument values?

I see a lot of discussion about infix operators, representable with a single character, but nothing about regular user-defined functions of two arguments …

Using a symbol you loose the verbal semantics which is catch by the function name. Is this possible in Julia, may be with some syntax trick ??

You can only use the symbols defined in Mathematics · The Julia Language (and the associated source file) as infix. If you name your function one of those — or one of those with a unicode combining character appended — then it can be used infix.

There’s not a way to use an arbitrarily named function as infix.