GtkBox::pack_end_defaults

void pack_end_defaults( GtkWidget widget );

pack_end_defaults() packs the given child widget from the bottom or from the right of the box container using the default parameter values true, true, 0.

The same result can be achieved by using

$box->pack_end($child);
without specifying any further parameters.