Monomorphization - CI/CD用語集の定義
単相化とは、generic なコードがインスタンス化されるすべての具体的な型について、別々の特殊化されたバージョンを生成する compiler の戦略です。より大きなバイナリと長いコンパイル時間を代償に、高速で静的にディスパッチされるコードを生み出します。
関連ガイド
Generics Erasure - CI/CD Glossary DefinitionGenerics erasure compiles generic code once, dropping type parameters at runtime, so binaries stay small but…
Virtual Method Table - CI/CD Glossary DefinitionA vtable is a per-type table of function pointers the runtime uses to dispatch a polymorphic call to the righ…
Inlining - CI/CD Glossary DefinitionInlining replaces a function call with the function’s body, removing call overhead and unlocking further opti…