cscm.CmdArgumentVector

class cscm.CmdArgumentVector

Bases: object

Stores an iterable of CmdArgument so that the same set of arguments can be shared across multiple FrontEndCommand objects.

Store objects of this class in a CmdArgument.

Methods

__init__() Initializer.
__init__(v)

Initialize a CmdArgumentVector from an iterable of CmdArgument.

Parameters: v (iterable of CmdArgument) – The CmdArgument objects to store in the CmdArgumentVector.
__init__(strs)

Initialize a CmdArgumentVector from an iterable of str.

Parameters: strs (iterable of str) – The strings that will be converted to CmdArgumentString objects and then stored in the CmdArgumentVector.
__init__()

Default initializer.