mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
Merge remote-tracking branch 'origin/trunk' into str-fromUtf8
This commit is contained in:
commit
57b78dde06
156 changed files with 19265 additions and 10809 deletions
|
@ -398,6 +398,18 @@ fn nat_alias_content() -> SolvedType {
|
|||
int_alias_content(natural_type())
|
||||
}
|
||||
|
||||
// U64
|
||||
|
||||
#[inline(always)]
|
||||
pub fn u64_type() -> SolvedType {
|
||||
SolvedType::Alias(Symbol::NUM_U64, vec![], Box::new(u64_alias_content()))
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
fn u64_alias_content() -> SolvedType {
|
||||
int_alias_content(unsigned64_type())
|
||||
}
|
||||
|
||||
// INT
|
||||
|
||||
#[inline(always)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue