argshold
Introduction

This project allows to store the arguments for callables.

Installation
Features
class argshold.BaseArgumentHolder(*args: Any, **kwargs: Any)

This abstract base class implements the common features of ArgumentHolder and FrozenArgumentHolder.

__len__() -> int

This magic method implements len(self).

It returns the sum of the lengths of args and kwargs.

__matmul__(other: Callable) -> Self

This magic method implements self @ other.

It returns a copy with other applied to all the values as a callable.

__rmatmul__(other: Callable) -> Self

This magic method implements other @ self.

other @ self does the same as self @ other.

args

This abstract property represents the positional arguments.

call(callback: Callable, /) -> Any

This method calls a callback using the arguments in the current instance.

copy() -> Self

This method makes a copy of the current instance.

kwargs

This abstract property represents the keyword arguments.

partial(func: Callable, /) -> functools.partial

This method creates a functools.partial object.

partialmethod(func: Callable, /) -> functools.partial

This method creates a functools.partialmethod object.

toArgumentHolder() -> ArgumentHolder

This method converts the current instance into a ArgumentHolder object.

toFrozenArgumentHolder() -> FrozenArgumentHolder

This method converts the current instance into a FrozenArgumentHolder object.

class argshold.ArgumentHolder(*args: Any, **kwargs: Any)

This class provides mutable argument holders.

__imatmul__(other: Callable) -> Self

This magic method implements self @= other.

class argshold.FrozenArgumentHolder(*args: Any, **kwargs: Any)

This class provides immutable argument holders.

Testing
License
Impressum