How is it possible to call function from different templates in blazeComponent?

I want to call from different template in function example :

class studens extends BlazeComponent {
           average(){}
}
studens.register("templatestudens"); 
class teacher extends BlazeComponent {
           // call another template (templatestudens)  function average() ???? 
}
teacher.register("templateteacher");

http://blazejs.org/guide/reusing-code.html