Comment on Swift CryptoparentComments−skohan6ySwift doesn't monomorphize generics like Rust does[0], for example.Swift can monomorphize generics, but it doesn't do so by default. Normally this is left up to the compiler, but it's possible to force monomorphization using inlining attributes.
Comments
Swift can monomorphize generics, but it doesn't do so by default. Normally this is left up to the compiler, but it's possible to force monomorphization using inlining attributes.