2016-06-28 04:05:22 +00:00
|
|
|
.. _other-bidict-types:
|
|
|
|
|
|
|
|
Other ``bidict`` Types
|
|
|
|
======================
|
|
|
|
|
squashed changes for 0.13.0
- support Python 3.6, refactor CI/test setup, increase test coverage
- refactor BidirectionalMapping, BidictBase, OrderedBidictBase,
FrozenBidictBase, and subclasses
- move frozenorderedbidict into _frozen and looseorderedbidict into _loose
- register bidict as a virtual subclass of MutableMapping rather than
inheriting from it directly. This makes it clearer that it does not use any
of the concrete generic methods that MutableMapping provides.
- improve performance and flexibility of frozenbidict and
frozenorderedbidict hashing
- docs, including new type-hierarchy.png diagram
- rm unused imap, ifilter, izip_longest from compat, add PYPY
- update to latest versions of dependencies
- restore benchmarking on travis
2017-01-09 15:37:31 +00:00
|
|
|
Now that we've covered
|
|
|
|
:ref:`basic usage of bidict.bidict <basic-usage>` and
|
2016-06-28 04:05:22 +00:00
|
|
|
:ref:`bidict.loosebidict <loosebidict>`,
|
|
|
|
let's look at the remaining bidict types
|
|
|
|
and the hierarchy they belong to.
|
|
|
|
|
squashed changes for 0.13.0
- support Python 3.6, refactor CI/test setup, increase test coverage
- refactor BidirectionalMapping, BidictBase, OrderedBidictBase,
FrozenBidictBase, and subclasses
- move frozenorderedbidict into _frozen and looseorderedbidict into _loose
- register bidict as a virtual subclass of MutableMapping rather than
inheriting from it directly. This makes it clearer that it does not use any
of the concrete generic methods that MutableMapping provides.
- improve performance and flexibility of frozenbidict and
frozenorderedbidict hashing
- docs, including new type-hierarchy.png diagram
- rm unused imap, ifilter, izip_longest from compat, add PYPY
- update to latest versions of dependencies
- restore benchmarking on travis
2017-01-09 15:37:31 +00:00
|
|
|
``bidict`` Type Hierarchy
|
|
|
|
-------------------------
|
2016-06-28 04:05:22 +00:00
|
|
|
|
squashed changes for 0.13.0
- support Python 3.6, refactor CI/test setup, increase test coverage
- refactor BidirectionalMapping, BidictBase, OrderedBidictBase,
FrozenBidictBase, and subclasses
- move frozenorderedbidict into _frozen and looseorderedbidict into _loose
- register bidict as a virtual subclass of MutableMapping rather than
inheriting from it directly. This makes it clearer that it does not use any
of the concrete generic methods that MutableMapping provides.
- improve performance and flexibility of frozenbidict and
frozenorderedbidict hashing
- docs, including new type-hierarchy.png diagram
- rm unused imap, ifilter, izip_longest from compat, add PYPY
- update to latest versions of dependencies
- restore benchmarking on travis
2017-01-09 15:37:31 +00:00
|
|
|
.. image:: _static/type-hierarchy.png
|
|
|
|
:alt: bidict type hierarchy
|
2016-06-28 04:05:22 +00:00
|
|
|
|
squashed changes for 0.13.0
- support Python 3.6, refactor CI/test setup, increase test coverage
- refactor BidirectionalMapping, BidictBase, OrderedBidictBase,
FrozenBidictBase, and subclasses
- move frozenorderedbidict into _frozen and looseorderedbidict into _loose
- register bidict as a virtual subclass of MutableMapping rather than
inheriting from it directly. This makes it clearer that it does not use any
of the concrete generic methods that MutableMapping provides.
- improve performance and flexibility of frozenbidict and
frozenorderedbidict hashing
- docs, including new type-hierarchy.png diagram
- rm unused imap, ifilter, izip_longest from compat, add PYPY
- update to latest versions of dependencies
- restore benchmarking on travis
2017-01-09 15:37:31 +00:00
|
|
|
At the top of the hierarchy of types that bidict provides is
|
2016-06-28 04:05:22 +00:00
|
|
|
:class:`bidict.BidirectionalMapping`.
|
squashed changes for 0.13.0
- support Python 3.6, refactor CI/test setup, increase test coverage
- refactor BidirectionalMapping, BidictBase, OrderedBidictBase,
FrozenBidictBase, and subclasses
- move frozenorderedbidict into _frozen and looseorderedbidict into _loose
- register bidict as a virtual subclass of MutableMapping rather than
inheriting from it directly. This makes it clearer that it does not use any
of the concrete generic methods that MutableMapping provides.
- improve performance and flexibility of frozenbidict and
frozenorderedbidict hashing
- docs, including new type-hierarchy.png diagram
- rm unused imap, ifilter, izip_longest from compat, add PYPY
- update to latest versions of dependencies
- restore benchmarking on travis
2017-01-09 15:37:31 +00:00
|
|
|
This extends the :class:`collections.abc.Mapping` ABC
|
|
|
|
with the
|
|
|
|
:attr:`"inv" <bidict.BidirectionalMapping.inv>`
|
|
|
|
:func:`abstractproperty <abc.abstractproperty>`,
|
|
|
|
as well as a concrete, generic implementation of
|
|
|
|
:attr:`__inverted__ <bidict.BidirectionalMapping.__inverted__>`.
|
|
|
|
:class:`BidirectionalMapping <bidict.BidirectionalMapping>` also implements
|
|
|
|
:attr:`__subclasshook__ <bidict.BidirectionalMapping.__subclasshook__>`,
|
|
|
|
so that any class providing a conforming API is considered a virtual subclass
|
|
|
|
of :class:`BidirectionalMapping <bidict.BidirectionalMapping>` automatically.
|
|
|
|
|
|
|
|
Implementing
|
|
|
|
:class:`BidirectionalMapping <bidict.BidirectionalMapping>` is
|
|
|
|
:class:`BidictBase <bidict.BidictBase>`.
|
|
|
|
Users will typically only interact with subclasses of this class.
|
|
|
|
|
|
|
|
Inheriting from :class:`BidictBase <bidict.BidictBase>`
|
|
|
|
are the already-discussed
|
|
|
|
:class:`bidict.bidict` and :class:`bidict.loosebidict`,
|
|
|
|
which implement :class:`collections.abc.MutableMapping`.
|
|
|
|
|
|
|
|
Also inheriting from :class:`BidictBase <bidict.BidictBase>`
|
|
|
|
is :class:`bidict.frozenbidict`,
|
|
|
|
the first immutable bidict you'll meet.
|
2016-06-28 04:05:22 +00:00
|
|
|
|
|
|
|
.. include:: frozenbidict.rst.inc
|
|
|
|
|
|
|
|
.. include:: orderedbidict.rst.inc
|
|
|
|
|
|
|
|
.. include:: namedbidict.rst.inc
|
|
|
|
|
|
|
|
.. include:: polymorphism.rst.inc
|
squashed changes for 0.13.0
- support Python 3.6, refactor CI/test setup, increase test coverage
- refactor BidirectionalMapping, BidictBase, OrderedBidictBase,
FrozenBidictBase, and subclasses
- move frozenorderedbidict into _frozen and looseorderedbidict into _loose
- register bidict as a virtual subclass of MutableMapping rather than
inheriting from it directly. This makes it clearer that it does not use any
of the concrete generic methods that MutableMapping provides.
- improve performance and flexibility of frozenbidict and
frozenorderedbidict hashing
- docs, including new type-hierarchy.png diagram
- rm unused imap, ifilter, izip_longest from compat, add PYPY
- update to latest versions of dependencies
- restore benchmarking on travis
2017-01-09 15:37:31 +00:00
|
|
|
|
|
|
|
.. include:: extending.rst.inc
|