methods
Extract all method functions from self and bind self as their first named argument.
Returns a dictionary of ready-to-call functions where the self argument has already been applied. Use destructuring to get individual methods.
Example: #let (uncover, only) = utils.methods(self) to get uncover and only methods.
Parameters
self : dictionary
The presentation context (must have a methods key containing a dictionary of functions).
Returns: dictionary