1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-30 22:23:44 +02:00

Rename search module to search_stream.

The name better reflects the difference between it and the search_buffer
module.
This commit is contained in:
Andrew Gallant
2016-09-10 00:08:42 -04:00
parent 5b36c86c15
commit e3da726836
4 changed files with 15 additions and 6 deletions

View File

@ -1,3 +1,11 @@
/*!
The search_buffer module is responsible for searching a single file all in a
single buffer. Typically, the source of the buffer is a memory map. This can
be useful for when memory maps are faster than streaming search.
Note that this module doesn't quite support everything that search_stream does.
Notably, showing contexts.
*/
use std::cmp;
use std::path::Path;
@ -5,7 +13,7 @@ use grep::Grep;
use term::Terminal;
use printer::Printer;
use search::{IterLines, Options, count_lines, is_binary};
use search_stream::{IterLines, Options, count_lines, is_binary};
pub struct BufferSearcher<'a, W: 'a> {
opts: Options,