Question
Can i somehow say: if isAbstract(className) % do something else % do something else end
Related Questions
Expert Answer
Kshitij Singh
PhD Expert
Answered Nov 20, 2025
A class is abstract if any of its properties or methods is abstract.
It's possible to write a function, is_abstract. Start:
mco = ?my_class
mco.PropertyList
mco.MethodList
any([mco.MethodList.Abstract])
or better
mcls = meta.class.fromName('ClassName')
Have a different question? Ask here