This uses lua ffi and a cpp shard library to implement a file finder in cpp so we can use threads more effectively and get better performance.
14 lines
211 B
C++
14 lines
211 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace ivy {
|
|
|
|
struct Match {
|
|
int score;
|
|
std::string content;
|
|
};
|
|
|
|
static bool sort_match(const Match& a, const Match& b) { return a.score > b.score; }
|
|
|
|
} // namespace ivy
|