minilua::details namespace

Users of the library should ignore this namespace. It is only usable internally.

Contents

Splits a string into two parts. the split happens at the character c which is not included in the result.

Example: split_string("123.456", '.') = (123, 456)

Classes

struct EvalResult
struct FunctionImpl
struct Interpreter

Functions

void add_stdlib(Table& table)

Function documentation

void minilua::details::add_stdlib(Table& table)

Add the stdlib to the given table.

This will only add the parts that are directly implemented in lua.