Values#

class Values#

Methods

__init__

items

items

keys

keys

values

values

class ItemsView#
__bool__(self) bool#

__bool__

Return type:

bool

__init__(*args, **kwargs)#
__iter__(self) ItemsView#

__iter__

Return type:

ItemsView

__len__(self) int#

__len__

Return type:

int

__next__(self) tuple[Poly, float]#

__next__

Return type:

tuple[Poly, float]

class KeysView#
__bool__(self) bool#

__bool__

Return type:

bool

__contains__(self, arg: Poly, /) bool#
__contains__(self, arg: Any, /) bool

__contains__

Overloading:

1. __contains__(self, arg: amplify.Poly, /) -> bool

Args:
  • arg (amplify.Poly):

Returns:

bool:

2. __contains__(self, arg: Any, /) -> bool

Args:
  • arg (Any):

Returns:

bool:

__init__(*args, **kwargs)#
__iter__(self) KeysView#

__iter__

Return type:

KeysView

__len__(self) int#

__len__

Return type:

int

__next__(self) Poly#

__next__

Return type:

Poly

class ValuesView#
__bool__(self) bool#

__bool__

Return type:

bool

__init__(*args, **kwargs)#
__iter__(self) ValuesView#

__iter__

Return type:

ValuesView

__len__(self) int#

__len__

Return type:

int

__next__(self) float#

__next__

Return type:

float

__bool__(self) bool#

__bool__

Return type:

bool

__contains__(self, arg: Poly, /) bool#
__contains__(self, arg: Any, /) bool

__contains__

Overloading:

1. __contains__(self, arg: amplify.Poly, /) -> bool

Args:
  • arg (amplify.Poly):

Returns:

bool:

2. __contains__(self, arg: Any, /) -> bool

Args:
  • arg (Any):

Returns:

bool:

__getitem__(self, arg: Poly, /) float#

__getitem__

Parameters:

arg (Poly) –

Return type:

float

__init__(*args, **kwargs)#
__iter__(self) KeysView#

__iter__

Return type:

KeysView

__len__(self) int#

__len__

Return type:

int

__repr__(self) str#

__repr__

Return type:

str

__str__(self) str#

__str__

Return type:

str

items(self) ItemsView#

items

Return type:

ItemsView

keys(self) KeysView#

keys

Return type:

KeysView

values(self) ValuesView#

values

Return type:

ValuesView