pitchtools.MelodicChromaticIntervalSet

Inheritance diagram of abjad.tools.pitchtools.MelodicChromaticIntervalSet.MelodicChromaticIntervalSet.MelodicChromaticIntervalSet

class abjad.tools.pitchtools.MelodicChromaticIntervalSet.MelodicChromaticIntervalSet.MelodicChromaticIntervalSet(*args, **kwargs)[source]

New in version 2.0.

Abjad model of melodic chromatic interval set:

abjad> pitchtools.MelodicChromaticIntervalSet([11, 11, 13.5, 13.5])
MelodicChromaticIntervalSet(+11, +13.5)

Melodic chromatic interval sets are immutable.

Read-only Properties

MelodicChromaticIntervalSet.harmonic_chromatic_interval_set[source]
MelodicChromaticIntervalSet.melodic_chromatic_interval_numbers[source]
MelodicChromaticIntervalSet.melodic_chromatic_intervals[source]

Methods

MelodicChromaticIntervalSet.copy()

Return a shallow copy of a set.

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.difference()

Return the difference of two or more sets as a new set.

(i.e. all elements that are in this set but not the others.)

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.intersection()

Return the intersection of two or more sets as a new set.

(i.e. elements that are common to all of the sets.)

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.isdisjoint()

Return True if two sets have a null intersection.

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.issubset()

Report whether another set contains this set.

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.issuperset()

Report whether this set contains another set.

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.symmetric_difference()

Return the symmetric difference of two sets as a new set.

(i.e. all elements that are in exactly one of the sets.)

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.union()

Return the union of sets as a new set.

(i.e. all elements that are in either set.)

Note

Inherited from __builtin__.frozenset

Special Methods

MelodicChromaticIntervalSet.__and__()

x.__and__(y) <==> x&y

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__cmp__(y) <==> cmp(x, y)

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__contains__()

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__delattr__()

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

Note

Inherited from __builtin__.object

MelodicChromaticIntervalSet.__eq__()

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__ge__()

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__gt__()

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__hash__() <==> hash(x)

Note

Inherited from __builtin__.frozenset

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__le__()

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

Note

Inherited from __builtin__.frozenset

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__lt__()

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__ne__()

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

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__or__()

x.__or__(y) <==> x|y

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__rand__()

x.__rand__(y) <==> y&x

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__repr__()[source]
MelodicChromaticIntervalSet.__ror__()

x.__ror__(y) <==> y|x

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__rsub__()

x.__rsub__(y) <==> y-x

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__rxor__()

x.__rxor__(y) <==> y^x

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__setattr__()

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

Note

Inherited from __builtin__.object

MelodicChromaticIntervalSet.__str__()[source]
MelodicChromaticIntervalSet.__sub__()

x.__sub__(y) <==> x-y

Note

Inherited from __builtin__.frozenset

MelodicChromaticIntervalSet.__xor__()

x.__xor__(y) <==> x^y

Note

Inherited from __builtin__.frozenset

Table Of Contents

This Page