lilypondfiletools.BookpartBlock

Inheritance diagram of abjad.tools.lilypondfiletools.BookpartBlock.BookpartBlock.BookpartBlock

class abjad.tools.lilypondfiletools.BookpartBlock.BookpartBlock.BookpartBlock[source]

New in version 2.0.

Abjad model of LilyPond input file bookpart block:

abjad> bookpart_block = lilypondfiletools.BookpartBlock()
abjad> bookpart_block
BookpartBlock()
abjad> f(bookpart_block)
\bookpart {}

Return bookpart block.

Read-only Properties

BookpartBlock.format

Note

Inherited from lilypondfiletools._NonattributedBlock

Read/write Properties

BookpartBlock.is_formatted_when_empty

Note

Inherited from lilypondfiletools._NonattributedBlock

Methods

BookpartBlock.append()

L.append(object) – append object to end

Note

Inherited from __builtin__.list

BookpartBlock.count(value) → integer -- return number of occurrences of value

Note

Inherited from __builtin__.list

BookpartBlock.extend()

L.extend(iterable) – extend list by appending elements from the iterable

Note

Inherited from __builtin__.list

BookpartBlock.index(value[, start[, stop]]) → integer -- return first index of value.

Raises ValueError if the value is not present.

Note

Inherited from __builtin__.list

BookpartBlock.insert()

L.insert(index, object) – insert object before index

Note

Inherited from __builtin__.list

BookpartBlock.pop([index]) → item -- remove and return item at index (default last).

Raises IndexError if list is empty or index is out of range.

Note

Inherited from __builtin__.list

BookpartBlock.remove()

L.remove(value) – remove first occurrence of value. Raises ValueError if the value is not present.

Note

Inherited from __builtin__.list

BookpartBlock.reverse()

L.reverse() – reverse IN PLACE

Note

Inherited from __builtin__.list

BookpartBlock.sort()

L.sort(cmp=None, key=None, reverse=False) – stable sort IN PLACE; cmp(x, y) -> -1, 0, 1

Note

Inherited from __builtin__.list

Special Methods

BookpartBlock.__add__()

x.__add__(y) <==> x+y

Note

Inherited from __builtin__.list

BookpartBlock.__contains__()

x.__contains__(y) <==> y in x

Note

Inherited from __builtin__.list

BookpartBlock.__delattr__()

x.__delattr__(‘name’) <==> del x.name

Note

Inherited from __builtin__.object

BookpartBlock.__delitem__()

x.__delitem__(y) <==> del x[y]

Note

Inherited from __builtin__.list

BookpartBlock.__delslice__()

x.__delslice__(i, j) <==> del x[i:j]

Use of negative indices is not supported.

Note

Inherited from __builtin__.list

BookpartBlock.__eq__()

x.__eq__(y) <==> x==y

Note

Inherited from __builtin__.list

BookpartBlock.__ge__()

x.__ge__(y) <==> x>=y

Note

Inherited from __builtin__.list

BookpartBlock.__getitem__()

x.__getitem__(y) <==> x[y]

Note

Inherited from __builtin__.list

BookpartBlock.__getslice__()

x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.

Note

Inherited from __builtin__.list

BookpartBlock.__gt__()

x.__gt__(y) <==> x>y

Note

Inherited from __builtin__.list

BookpartBlock.__iadd__()

x.__iadd__(y) <==> x+=y

Note

Inherited from __builtin__.list

BookpartBlock.__imul__()

x.__imul__(y) <==> x*=y

Note

Inherited from __builtin__.list

BookpartBlock.__iter__() <==> iter(x)

Note

Inherited from __builtin__.list

BookpartBlock.__le__()

x.__le__(y) <==> x<=y

Note

Inherited from __builtin__.list

BookpartBlock.__len__() <==> len(x)

Note

Inherited from __builtin__.list

BookpartBlock.__lt__()

x.__lt__(y) <==> x<y

Note

Inherited from __builtin__.list

BookpartBlock.__mul__()

x.__mul__(n) <==> x*n

Note

Inherited from __builtin__.list

BookpartBlock.__ne__()

x.__ne__(y) <==> x!=y

Note

Inherited from __builtin__.list

BookpartBlock.__repr__()

Note

Inherited from lilypondfiletools._NonattributedBlock

BookpartBlock.__reversed__()

L.__reversed__() – return a reverse iterator over the list

Note

Inherited from __builtin__.list

BookpartBlock.__rmul__()

x.__rmul__(n) <==> n*x

Note

Inherited from __builtin__.list

BookpartBlock.__setattr__()

x.__setattr__(‘name’, value) <==> x.name = value

Note

Inherited from __builtin__.object

BookpartBlock.__setitem__()

x.__setitem__(i, y) <==> x[i]=y

Note

Inherited from __builtin__.list

BookpartBlock.__setslice__()

x.__setslice__(i, j, y) <==> x[i:j]=y

Use of negative indices is not supported.

Note

Inherited from __builtin__.list

BookpartBlock.__str__() <==> str(x)

Note

Inherited from __builtin__.object

Table Of Contents

This Page