div => 'div',
mod => 'mod',
abs => 'abs',
+ # ...
}
);
handles => {
add_text => 'append',
replace_text => 'replace',
+ # ...
}
);
inc_counter => 'inc',
dec_counter => 'dec',
reset_counter => 'reset',
+ # ...
}
);
darken => 'unset',
flip_switch => 'toggle',
is_dark => 'not',
+ # ...
}
);
set_option => 'set',
get_option => 'get',
has_option => 'exists',
+ # ...
}
);
handles => {
add_item => 'push',
next_item => 'shift',
+ # ...
}
);
default => sub { sub { 'called' } },
handles => {
call => 'execute',
+ # ...
}
);