Registry / database / qmex
library2024-10-31vcpkgunverified

QMEX - Query & Map & Evaluation & eXecution for Tabular Data, a library for processing tabular data.

vcpkg install qmex
INSTALL
IMPORT
SIG · QMEX
Q
qmex
databasecppv2024-10-31
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

qmex/qmex.h
#include <qmex/qmex.h>

Minimal QMEX usage: load CSV and filter rows.

#include <qmex/qmex.h> #include <iostream> int main() { // Example: load a CSV and query auto table = qmex::load_csv("data.csv"); auto result = table.filter([](const auto& row) { return row["age"] > 30; }); std::cout << "Filtered rows: " << result.size() << "\n"; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2024-10-31latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
Meta
1
Amazon
1
Resources

No resource links recorded.

qmex — pip install qmex · libregistry