For a user defined function as follows, can it be used to return a number or does it only return a Bool value?
threshold : Number = 100;
hasManySubInterfaces(iface) : Bool = length(iface.subinterfaces) > threshold;
Say something like the following, is that possible?
threshold : Number = 100;
hasManySubInterfaces(iface) : Number= length(iface.subinterfaces) + threshold;