Skip to content

Custom list operators

Latest
Compare
Choose a tag to compare
@RomiC RomiC released this 23 Jun 12:22
· 103 commits to master since this release

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=');
}