ecflow.ZombieVec
- class ecflow.ZombieVec
Bases:
pybind11_object
Hold a list of zombies
- ZombieVec.append(self: ecflow.ZombieVec, x: Zombie) None
Add an item to the end of the list
- ZombieVec.clear(self: ecflow.ZombieVec) None
Clear the contents
- ZombieVec.count(self: ecflow.ZombieVec, x: Zombie) int
Return the number of times x appears in the list
- ZombieVec.extend(*args, **kwargs)
Overloaded function.
extend(self: ecflow.ZombieVec, L: ecflow.ZombieVec) -> None
Extend the list by appending all the items in the given list
extend(self: ecflow.ZombieVec, L: collections.abc.Iterable) -> None
Extend the list by appending all the items in the given list
- ZombieVec.insert(self: ecflow.ZombieVec, i: SupportsInt | SupportsIndex, x: Zombie) None
Insert an item at a given position.
- ZombieVec.pop(*args, **kwargs)
Overloaded function.
pop(self: ecflow.ZombieVec) -> Zombie
Remove and return the last item
pop(self: ecflow.ZombieVec, i: typing.SupportsInt | typing.SupportsIndex) -> Zombie
Remove and return the item at index i
- ZombieVec.remove(self: ecflow.ZombieVec, x: Zombie) None
Remove the first item from the list whose value is x. It is an error if there is no such item.
- ecflow.debug_build() bool