Module as3_parser::util

source ·
Expand description

Miscellaneous.

Structs§

  • A mutable memory location.
  • CharacterReader may be used for iterating characters from left-to-right in a string with miscellaneous operation methods.
  • A hash map implemented with quadratic probing and SIMD lookup.
  • A hash set implemented as a HashMap where the value is ().
  • Wrapper for pointer types that implements by-address comparison.
  • A single-threaded reference-counting pointer. ‘Rc’ stands for ‘Reference Counted’.
  • A mutable memory location with dynamically checked borrow rules
  • Weak is a version of Rc that holds a non-owning reference to the managed allocation. The allocation is accessed by calling upgrade on the Weak pointer, which returns an Option<Rc<T>>.

Functions§