Hi guys, I'd like to know whether it is possible or not save a chain of operators as a custom function. For example, If I have a DataSet transformation composed by a map followed by a reduce (but this is a simple case, I could have a more complex scenario), is it possible to save it as a custom function (eg. "myFunction" => map.reduce) so that I can call mydataset.myFunction() instead of myDataset.map().reduce()?
Best, Flavio