#test #read #reader #input #helper #rosalind #rosalind-io

rosalind_test_reader

读取Rosalind测试文件的帮助程序库

1 个不稳定版本

0.1.0 2021年2月18日

#227 in #reader

WTFPL 许可证

3KB

Rosalind测试文件读取器

一个简单的库,用于帮助读取Rosalind的测试文件。

示例

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

一个类似这样的文件

Input
Hello
Output
World

变成类似这样的RosalindIO结构体

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

无运行时依赖