Types
In Sidef, a new type can be declared as a class and its name can be used in function or method parameters to provide dynamic type checking:
A type can be veryfied by using the .kind_of(TYPE)
method, which is defined inside the Object
class, which is the parent of all classes (including user-defined classes):
The type of an object can be found usind the following two methods (which are also defined inside the Object
class):
Last updated