Skip to content

embedder readFromFile

GitHub Action edited this page Jul 9, 2026 · 1 revision
void readFromFile(std::filesystem::path input)

Basic Info

Reads embedding table from file.

Return Type

Returns void

Parameters

Parameter Type Use Optional
input std::filesystem::path Input file

Example

// Calling the readFromFile() function
std::filesystem::path input; // Fill with your filepath
embedder e(42, 420);
e.readFromFile(input);

Clone this wiki locally