Valuecontainer Module

class mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper
__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper) -> None

  2. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, arg0: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper) -> None

Copy constructor

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, arg0: Iterable) -> None

__new__(**kwargs)
append(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, x: bool) None

Add an item to the end of the list

clear(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper) None

Clear the contents

count(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, x: bool) int

Return the number of times x appears in the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, L: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper) -> None

Extend the list by appending all the items in the given list

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, L: Iterable) -> None

Extend the list by appending all the items in the given list

insert(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, i: int, x: bool) None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper) -> bool

Remove and return the last item

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, i: int) -> bool

Remove and return the item at index i

remove(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.BoolVectorWrapper, x: bool) None

Remove the first item from the list whose value is x. It is an error if there is no such item.

class mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper
__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper) -> None

  2. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, arg0: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper) -> None

Copy constructor

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, arg0: Iterable) -> None

__new__(**kwargs)
append(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, x: float) None

Add an item to the end of the list

clear(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper) None

Clear the contents

count(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, x: float) int

Return the number of times x appears in the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, L: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper) -> None

Extend the list by appending all the items in the given list

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, L: Iterable) -> None

Extend the list by appending all the items in the given list

insert(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, i: int, x: float) None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper) -> float

Remove and return the last item

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, i: int) -> float

Remove and return the item at index i

remove(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.FloatVectorWrapper, x: float) None

Remove the first item from the list whose value is x. It is an error if there is no such item.

class mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper
__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper) -> None

  2. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, arg0: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper) -> None

Copy constructor

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, arg0: Iterable) -> None

__new__(**kwargs)
append(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, x: int) None

Add an item to the end of the list

clear(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper) None

Clear the contents

count(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, x: int) int

Return the number of times x appears in the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, L: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper) -> None

Extend the list by appending all the items in the given list

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, L: Iterable) -> None

Extend the list by appending all the items in the given list

insert(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, i: int, x: int) None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper) -> int

Remove and return the last item

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, i: int) -> int

Remove and return the item at index i

remove(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.IntVectorWrapper, x: int) None

Remove the first item from the list whose value is x. It is an error if there is no such item.

class mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper
__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper) -> None

  2. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, arg0: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper) -> None

Copy constructor

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, arg0: Iterable) -> None

__new__(**kwargs)
append(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, x: str) None

Add an item to the end of the list

clear(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper) None

Clear the contents

count(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, x: str) int

Return the number of times x appears in the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, L: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper) -> None

Extend the list by appending all the items in the given list

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, L: Iterable) -> None

Extend the list by appending all the items in the given list

insert(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, i: int, x: str) None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper) -> str

Remove and return the last item

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, i: int) -> str

Remove and return the item at index i

remove(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.StringVectorWrapper, x: str) None

Remove the first item from the list whose value is x. It is an error if there is no such item.

class mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper
__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper) -> None

  2. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, arg0: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper) -> None

Copy constructor

  1. __init__(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, arg0: Iterable) -> None

__new__(**kwargs)
append(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, x: int) None

Add an item to the end of the list

clear(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper) None

Clear the contents

count(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, x: int) int

Return the number of times x appears in the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, L: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper) -> None

Extend the list by appending all the items in the given list

  1. extend(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, L: Iterable) -> None

Extend the list by appending all the items in the given list

insert(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, i: int, x: int) None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper) -> int

Remove and return the last item

  1. pop(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, i: int) -> int

Remove and return the item at index i

remove(self: mtf.libs.mtf_pybinder.ASAM.XIL.Implementation.Testbench.Common.ValueContainer.UIntVectorWrapper, x: int) None

Remove the first item from the list whose value is x. It is an error if there is no such item.