mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
make Dict.len return a nat
This commit is contained in:
parent
32ef95e3d0
commit
1ca0b797ea
1 changed files with 16 additions and 1 deletions
|
@ -2198,7 +2198,22 @@ fn dict_hash_test_only(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
||||||
|
|
||||||
/// Dict.len : Dict * * -> Nat
|
/// Dict.len : Dict * * -> Nat
|
||||||
fn dict_len(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
fn dict_len(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
||||||
lowlevel_1(symbol, LowLevel::DictSize, var_store)
|
let arg1_var = var_store.fresh();
|
||||||
|
let ret_var = Variable::NAT;
|
||||||
|
|
||||||
|
let body = RunLowLevel {
|
||||||
|
op: LowLevel::DictSize,
|
||||||
|
args: vec![(arg1_var, Var(Symbol::ARG_1))],
|
||||||
|
ret_var,
|
||||||
|
};
|
||||||
|
|
||||||
|
defn(
|
||||||
|
symbol,
|
||||||
|
vec![(arg1_var, Symbol::ARG_1)],
|
||||||
|
var_store,
|
||||||
|
body,
|
||||||
|
ret_var,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Dict.empty : Dict * *
|
/// Dict.empty : Dict * *
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue