top of page
Overloading
Functions and methods can be defined for different number and type of arguments.
​
def isInt (int _) = True
def isInt (float _) = False
bottom of page
Functions and methods can be defined for different number and type of arguments.
​
def isInt (int _) = True
def isInt (float _) = False