Squashed 'third_party/immer/' content from commit ad3e3556d
git-subtree-dir: third_party/immer git-subtree-split: ad3e3556d38bb75966dd24c61a774970a7c7957e
This commit is contained in:
commit
7f19d64164
311 changed files with 74223 additions and 0 deletions
51
doc/transients.rst
Normal file
51
doc/transients.rst
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
.. _transient:
|
||||
|
||||
Transients
|
||||
==========
|
||||
|
||||
*Transients* is a concept borrowed `from Clojure
|
||||
<clojure-transients>`_, with some twists to turn make more idiomatic
|
||||
in C++. Essentially, they are a mutable interface built on top of the
|
||||
same data structures the implements the immutable containers under the
|
||||
hood.
|
||||
|
||||
These can be useful for :ref:`performing efficient batch
|
||||
updates<batch-update>` or :ref:`interfacing with standard
|
||||
algorithms<std-compat>`.
|
||||
|
||||
.. _clojure-transients: https://clojure.org/reference/transients
|
||||
|
||||
array_transient
|
||||
---------------
|
||||
|
||||
.. doxygenclass:: immer::array_transient
|
||||
:members:
|
||||
:undoc-members:
|
||||
|
||||
vector_transient
|
||||
----------------
|
||||
|
||||
.. doxygenclass:: immer::vector_transient
|
||||
:members:
|
||||
:undoc-members:
|
||||
|
||||
flex_vector_transient
|
||||
---------------------
|
||||
|
||||
.. doxygenclass:: immer::flex_vector_transient
|
||||
:members:
|
||||
:undoc-members:
|
||||
|
||||
set_transient
|
||||
-------------
|
||||
|
||||
.. doxygenclass:: immer::set_transient
|
||||
:members:
|
||||
:undoc-members:
|
||||
|
||||
map_transient
|
||||
-------------
|
||||
|
||||
.. doxygenclass:: immer::map_transient
|
||||
:members:
|
||||
:undoc-members:
|
||||
Loading…
Add table
Add a link
Reference in a new issue