Example #1
0
 public static HeuristicResult Match(this IHeuristic heuristic, Stream stream) =>
 heuristic.Match(new StreamHeuristicReader(stream));
Example #2
0
 public static HeuristicResult Match(this IHeuristic heuristic, Memory <byte> data) =>
 heuristic.Match(new MemoryHeuristicReader(data));