Retrieve all lines for a file by path. This function reads the CRDT tables to reconstruct the file's content line by line, with token-level granularity. # Arguments `txn` - A mutable transaction for database access `path` - The file path to retrieve # Returns A vector of `Line` structs representing the file's content. Returns an empty vector if the file doesn't exist. # Example ```rust,igno
(txn: &mut T, path: &str)
| 307 | /// } |
| 308 | /// ``` |
| 309 | pub fn get_file_lines<T: MutTxnT>(txn: &mut T, path: &str) -> PristineResult<Vec<Line>> { |
| 310 | get_file_lines_with_options(txn, path, &RetrievalOptions::default()) |
| 311 | } |
| 312 | |
| 313 | /// Retrieve all lines for a file by path with options. |
| 314 | /// |
nothing calls this directly
no test coverage detected