InterviewSolution
Saved Bookmarks
| 1. |
Does Rust guarantee tail-call optimization? |
|
Answer» No, Rust doesn’t GUARANTEE TOC (Tail Call Optimization). Not even the standard library is required to COMPILE the rust code. In these CASES, the run TIME is similar to that of C programming language. |
|