SparkseePython3 6.1.0
sparksee.BooleanList Class Reference

Boolean list. More...

Public Member Functions

 clear (self)
 Clears the list.
 __init__ (self)
 Constructor.
 __iter__ (self)
 Gets a new TypeListIterator.
 iterator (self)
 Gets a new BooleanListIterator.
 add (self, value)
 Adds a Boolean at the end of the list.
 count (self)
 Number of elements in the list.

Detailed Description

Boolean list.

It stores a Boolean list.

Use BooleanListIterator to access all elements into this collection.

Author
Sparsity Technologies http://www.sparsity-technologies.com

Constructor & Destructor Documentation

◆ __init__()

sparksee.BooleanList.__init__ ( self)

Constructor.

This creates an empty list.

Member Function Documentation

◆ __iter__()

sparksee.BooleanList.__iter__ ( self)

Gets a new TypeListIterator.

Returns
TypeListIterator instance

◆ add()

sparksee.BooleanList.add ( self,
value )

Adds a Boolean at the end of the list.

Parameters
value[in] Boolean.

◆ count()

sparksee.BooleanList.count ( self)

Number of elements in the list.

Returns
Number of elements in the list.

◆ iterator()

sparksee.BooleanList.iterator ( self)

Gets a new BooleanListIterator.

Returns
BooleanListIterator instance.