AdventOfCode2021/source/util/fileutils.d

24 lines
550 B
D
Raw Normal View History

2021-12-01 07:39:14 +00:00
module util.fileutils;
import std.file;
import std.string;
import std.algorithm;
import std.array;
import std.conv;
/**
* Reads a list of integers from a file, assuming one integer per line.
* Params:
* filename = The name of the file to read, relative to the working dir.
* Returns: A list of integers.
*/
2021-12-07 06:10:08 +00:00
int[] readInts(string filename, string sep = "\n") {
return readText(filename)
.strip()
.split(sep)
2021-12-01 07:39:14 +00:00
.map!(s => s.strip())
.filter!(s => s.length > 0)
.map!(s => s.to!int)
.array;
2021-12-07 06:10:08 +00:00
}