Given an IrFunction, how do I check if it's an ope...
# compiler
m
Given an IrFunction, how do I check if it's an operator function?
l
IrSimpleFunction.isOperator
, so ultimately
(function as? IrSimpleFunction)?.isOperator == true