diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 18:49:56 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 18:49:56 -0600 |
commit | d5a174a6d4f8be5e7cffe7c2adbb8db23b578f56 (patch) | |
tree | 536a10802f418e3e71f3828597439537d9e62f21 /include/fud_csv.hpp | |
parent | 908fdf06b41f9084d719a4b517c868b1ad29a9ac (diff) |
Fixing errors in Vector.
Diffstat (limited to 'include/fud_csv.hpp')
-rw-r--r-- | include/fud_csv.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/fud_csv.hpp b/include/fud_csv.hpp index 237c56f..2e0b6dd 100644 --- a/include/fud_csv.hpp +++ b/include/fud_csv.hpp @@ -88,6 +88,8 @@ struct Csv { // assumes file is at start static FudStatus parseFromBufferedFile(Csv& csv, BufferedRegularFile& file, size_t maxExtraAttempts); + + [[nodiscard]] Result<Option<StringView>, FudStatus> entry(size_t line, size_t column) const; }; } // namespace fud |