method get_value
Documentation for method get_value
assembled from the following types:
class Attribute
From Attribute
(Attribute) method get_value
Defined as:
method get_value(Mu )
Returns the value stored in this attribute of object $obj
.
my = Violated.^attributes(:local)[0];say .get_value(Violated.new); # OUTPUT: «5»
Note that this method violates encapsulation of the object, and should be used with care. Here be dragons.