Module rapier2d_f64::data::arena

source ·
Expand description

Arena adapted from the generational-arena crate.

See https://github.com/fitzgen/generational-arena/blob/master/src/lib.rs. This has been modified to have a fully deterministic deserialization (including for the order of Index attribution after a deserialization of the arena).

Structs§

  • The Arena allows inserting and removing elements that are referred to by Index.
  • An iterator that removes elements from the arena.
  • An index (and generation) into an Arena.
  • An iterator over the elements in an arena.
  • An iterator over shared references to the elements in an arena.
  • An iterator over exclusive references to elements in this arena.