This release introduces custom links operators. Before it, it was only possible to create custom operations with a single element. Thanks to the efforts of @safo6m starting from now custom operations with multiple arguments can be created:
function myInList(value): Operation {
return new Operation(`(${escapeValue(value)})`, '=myInList=');
}