Monomorphization

Monomorphization is a compile-time process where polymorphic functions are replaced by many monomorphic functions for each unique instantiation.

[1] It is considered beneficial to undergo the mentioned transformation because it results in the output intermediate representation (IR) having specific types, which allows for more effective optimization.

Additionally, many IRs are intended to be low-level and do not accommodate polymorphism.

The resulting code is generally faster than dynamic dispatch, but may require more compilation time and storage space due to duplicating the function body.

[2][3][4][5][6][7] This is an example of a use of a generic identity function in Rust After monomorphization, this would become equivalent to