New in version 2.0.
Abjad model of melodic diatonic interval set:
abjad> pitchtools.MelodicDiatonicIntervalSet('M2 M2 -m3 -P4')
MelodicDiatonicIntervalSet('-P4 -m3 +M2')
Melodic diatonic interval sets are immutable.
Return a shallow copy of a set.
Note
Inherited from __builtin__.frozenset
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
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
Return True if two sets have a null intersection.
Note
Inherited from __builtin__.frozenset
Report whether another set contains this set.
Note
Inherited from __builtin__.frozenset
Report whether this set contains another set.
Note
Inherited from __builtin__.frozenset
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
Return the union of sets as a new set.
(i.e. all elements that are in either set.)
Note
Inherited from __builtin__.frozenset
x.__and__(y) <==> x&y
Note
Inherited from __builtin__.frozenset
Note
Inherited from __builtin__.frozenset
x.__contains__(y) <==> y in x.
Note
Inherited from __builtin__.frozenset
x.__delattr__(‘name’) <==> del x.name
Note
Inherited from __builtin__.object
x.__eq__(y) <==> x==y
Note
Inherited from __builtin__.frozenset
x.__ge__(y) <==> x>=y
Note
Inherited from __builtin__.frozenset
x.__gt__(y) <==> x>y
Note
Inherited from __builtin__.frozenset
Note
Inherited from __builtin__.frozenset
Note
Inherited from __builtin__.frozenset
x.__le__(y) <==> x<=y
Note
Inherited from __builtin__.frozenset
Note
Inherited from __builtin__.frozenset
x.__lt__(y) <==> x<y
Note
Inherited from __builtin__.frozenset
x.__ne__(y) <==> x!=y
Note
Inherited from __builtin__.frozenset
x.__or__(y) <==> x|y
Note
Inherited from __builtin__.frozenset
x.__rand__(y) <==> y&x
Note
Inherited from __builtin__.frozenset
x.__ror__(y) <==> y|x
Note
Inherited from __builtin__.frozenset
x.__rsub__(y) <==> y-x
Note
Inherited from __builtin__.frozenset
x.__rxor__(y) <==> y^x
Note
Inherited from __builtin__.frozenset
x.__setattr__(‘name’, value) <==> x.name = value
Note
Inherited from __builtin__.object
x.__sub__(y) <==> x-y
Note
Inherited from __builtin__.frozenset
x.__xor__(y) <==> x^y
Note
Inherited from __builtin__.frozenset