mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
feat(gen_dev): add build_num_abs_f64
This commit is contained in:
parent
7c58c775d9
commit
365f1a1f7c
1 changed files with 4 additions and 0 deletions
|
@ -302,6 +302,10 @@ where
|
|||
/// It only deals with inputs and outputs of i64 type.
|
||||
fn build_num_abs_i64(&mut self, dst: &Symbol, src: &Symbol) -> Result<(), String>;
|
||||
|
||||
/// build_num_abs_f64 stores the absolute value of src into dst.
|
||||
/// It only deals with inputs and outputs of f64 type.
|
||||
fn build_num_abs_f64(&mut self, dst: &Symbol, src: &Symbol) -> Result<(), String>;
|
||||
|
||||
/// build_num_add_i64 stores the sum of src1 and src2 into dst.
|
||||
/// It only deals with inputs and outputs of i64 type.
|
||||
fn build_num_add_i64(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue