pitchtools.HarmonicChromaticIntervalSet

Inheritance diagram of abjad.tools.pitchtools.HarmonicChromaticIntervalSet.HarmonicChromaticIntervalSet.HarmonicChromaticIntervalSet

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

New in version 2.0.

Abjad model of harmonic chromatic interval set:

abjad> pitchtools.HarmonicChromaticIntervalSet([10, -12, -13, -13, -13.5])
HarmonicChromaticIntervalSet(10, 12, 13, 13.5)

Harmonic chromatic interval sets are immutable.

Read-only Properties

HarmonicChromaticIntervalSet.harmonic_chromatic_interval_numbers[source]
HarmonicChromaticIntervalSet.harmonic_chromatic_intervals[source]

Methods

HarmonicChromaticIntervalSet.copy()

Return a shallow copy of a set.

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.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

HarmonicChromaticIntervalSet.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

HarmonicChromaticIntervalSet.isdisjoint()

Return True if two sets have a null intersection.

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.issubset()

Report whether another set contains this set.

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.issuperset()

Report whether this set contains another set.

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.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

HarmonicChromaticIntervalSet.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

HarmonicChromaticIntervalSet.__and__()

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

Note

Inherited from __builtin__.frozenset

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__contains__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__delattr__()

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

Note

Inherited from __builtin__.object

HarmonicChromaticIntervalSet.__eq__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__ge__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__gt__()

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

Note

Inherited from __builtin__.frozenset

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

Note

Inherited from __builtin__.frozenset

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__le__()

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

Note

Inherited from __builtin__.frozenset

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__lt__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__ne__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__or__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__rand__()

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

Note

Inherited from __builtin__.frozenset

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

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__rsub__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__rxor__()

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__setattr__()

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

Note

Inherited from __builtin__.object

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

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

Note

Inherited from __builtin__.frozenset

HarmonicChromaticIntervalSet.__xor__()

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

Note

Inherited from __builtin__.frozenset

Table Of Contents

This Page