Can Angular framework call lifecycle hooks implicitly if they are not implemented explicitly?
For example, if @input is not used in a component, will ngOnChanges be triggered by Angular as it executes before ngOnInit? And if @input is used but ngOnChanges is not written, will it still be called implicitly? The same question applies to other hooks as well.
Thank you in advance.