csr_matrix 0.1.0

Simple implementation of a generic Compressed Sparse Row (CSR) matrix.
Documentation
  • Coverage
  • 71.43%
    5 out of 7 items documented0 out of 4 items with examples
  • Size
  • Source code size: 7.22 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.5 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • joseph-amirth

Simple implementation of a generic Compressed Sparse Row (CSR) matrix.

Features (an exhaustive list):

  • The type of the values stored does not have any trait requirements.
  • A separate builder type to populate the matrix with the desired values.
  • Access all the populated entries in a matrix as a single iterator.
  • Access the populated entries of a given row as a single iterator.

This crate was conceived for personal use, specifically for use in a WIP generic graphs crate.