mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
Fixes merge conflict
This commit is contained in:
commit
c00d400d85
54 changed files with 946 additions and 631 deletions
|
@ -564,9 +564,9 @@ pub fn types() -> MutMap<Symbol, (SolvedType, Region)> {
|
|||
Box::new(bool_type())
|
||||
);
|
||||
|
||||
// startsWithCodePoint : Str, U32 -> Bool
|
||||
// startsWithCodePt : Str, U32 -> Bool
|
||||
add_top_level_function_type!(
|
||||
Symbol::STR_STARTS_WITH_CODE_POINT,
|
||||
Symbol::STR_STARTS_WITH_CODE_PT,
|
||||
vec![str_type(), u32_type()],
|
||||
Box::new(bool_type())
|
||||
);
|
||||
|
@ -639,9 +639,9 @@ pub fn types() -> MutMap<Symbol, (SolvedType, Region)> {
|
|||
);
|
||||
}
|
||||
|
||||
// toBytes : Str -> List U8
|
||||
// toUtf8 : Str -> List U8
|
||||
add_top_level_function_type!(
|
||||
Symbol::STR_TO_BYTES,
|
||||
Symbol::STR_TO_UTF8,
|
||||
vec![str_type()],
|
||||
Box::new(list_type(u8_type()))
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue