routine hides
1 | language documentation Type system |
1.1 | (Type system) trait hides |
2 | role Metamodel::MultipleInheritance |
2.1 | (Metamodel::MultipleInheritance) method hides |
Documentation for routine hides
assembled from the following types:
language documentation Type system
From Type system
(Type system) trait hides
The trait hides
provides inheritance without being subject to re-dispatching.
hides A;B.new.m;B.new.n;# OUTPUT: «i am hidden»
The trait is hidden
allows a class to hide itself from re-dispatching.
is hiddenis AB.new.m;B.new.n;# OUTPUT: «i am hidden»
role Metamodel::MultipleInheritance
From Metamodel::MultipleInheritance
(Metamodel::MultipleInheritance) method hides
method hides(Metamodel::MultipleInheritance: )
Returns a list of all hidden parent classes.