mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-25 04:52:32 +00:00
string is empty for dev backend
This commit is contained in:
parent
f45e4ed858
commit
dd3d0a188e
5 changed files with 15 additions and 4 deletions
|
@ -1525,6 +1525,10 @@ pub fn countUtf8Bytes(string: RocStr) callconv(.C) usize {
|
|||
return string.len();
|
||||
}
|
||||
|
||||
pub fn isEmpty(string: RocStr) callconv(.C) bool {
|
||||
return string.isEmpty();
|
||||
}
|
||||
|
||||
pub fn getCapacity(string: RocStr) callconv(.C) usize {
|
||||
return string.getCapacity();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue