<h1>BUILDARGS</h1>
<ul>
- <li>Takes <code>@_</code>, returns a hash reference of attribute names/value</li>
+ <li>Takes <code>@_</code>, returns a hash reference of attribute name/value pairs</li>
<li>Accepts a hash or hashref; throws otherwise</li>
<li>Provide your own for other cases</li>
<li><strong>Always</strong> call <code>$class->SUPER::BUILDARGS(@_)</code> as a fallback!</li>
<pre><code>Person->new(@_)</code></pre>
- <ol>
+ <ol style="margin-top: 0">
<li>Calls <code>Person->BUILDARGS(@_)</code> to turn <code>@_</code> into a hashref</li>
<li>Blesses a reference</li>
<li>Populates attributes based on the hashref from #1</li>