← All docs
__elephc_mktime_raw() — internals
Compiler internals for __elephc_mktime_raw(): lowering path, type checks, and runtime helpers.
__elephc_mktime_raw() — internals
Where it lives
- Signature:
src/builtins/system/__elephc_mktime_raw.rs - Lowering:
src/codegen/lower_inst/builtins/system.rs:140 (lower_mktime) - Function symbol:
lower_mktime()
Lowering notes
- Internal helper used by the mktime() builtin.
- Bypasses timezone handling and calls the runtime mktime helper directly.
Runtime helpers
The following runtime helpers are referenced:
__rt_checkdate__rt_gmmktime__rt_mktime
Signature summary
function __elephc_mktime_raw(int $hour, int $minute, int $second, int $month, int $day, int $year): int
What the type checker enforces
- Arity: takes exactly 6 arguments.
Eval interpreter (magician)
Not callable from eval’d code — the magician interpreter has no entry for this builtin.
Cross-references
- No user-facing reference — this is a compiler internal helper.