As the title says, I\'m wondering if by making a class final, and letting the compiler do it\'s speed optimisation, I need to also mark functions as final or they become fin
final applied to a class makes it not subclassable, so in no case you can override any function or property, because in order to do that you have to create a subclass. So yes, it indirectly applies to all of its members