in reply to Raku question: "Moose is Perl", but it sure ain't Raku.
The submethod BUILD is (indirectly) called by .bless. It is meant to set private and public attributes of a class and receives all names attributes passed into .bless. The default constructor .new defined in Mu is the method that invokes it. Given that public accessor methods are not available in BUILD, you must use private attribute notation instead.C&P, straight from the docs
Edit:class C { has $.attr; submethod BUILD (:$attr = 42) { $!attr = $attr }; }; C.new.say; C.new( attr => 666 ); # 42 # 666
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Raku question: "Moose is Perl", but it sure ain't Raku.
by Anonymous Monk on Feb 12, 2020 at 20:22 UTC |