|
|
|
|
|
by paulddraper
1065 days ago
|
|
Yeah, I've only seen that term used in Rust, though the concept is very common in C++. They explain it there: "No RTTI, memory allocation, nor exceptions." Basically, nothing that has significant "runtime" cost....dynamic_cast, new/malloc, throwing exceptions. |
|