rosalind_test_reader 0.1.0

A helper crate to read Rosalind test files
Documentation
  • Coverage
  • 0%
    0 out of 6 items documented0 out of 3 items with examples
  • Size
  • Source code size: 2.39 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.26 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • stevenliebregt/cargo-generate-rosalind-template
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • stevenliebregt

Rosalind Test File Reader

Simple crate to help read test files from Rosalind.

Example

RosalindIO::from_path("tests/test-file.txt");
// or from 2 strings directly
RosalindIO::from_strings(
    String::from("Hello"), 
    String::from("World")
);

A file like this:

Input
Hello
Output
World

Becomes a RosalindIO struct like this:

RosalindIO {
    input: "Hello",
    output: "World",
}