Crate xer_minigrep

source ·
Expand description

§Minigrep

minigrep is a minimal version of grep as shown in the rust book.

This is the documentation for the library crate part of minigrep.

Structs§

Functions§

  • Performs a search according to what values are in the passed in Config, which could mean case sensitive search, case insensitive search, etc.
  • Returns a vector of references to str where each str is a line that matched case-sensitively a search for query in contents.
  • Returns a vector of references to str where each str is a line that matched case-insensitively a search for query in contents.