<s>
In	O
computing	O
,	O
static	B-Language
dispatch	I-Language
is	O
a	O
form	O
of	O
polymorphism	B-Application
fully	O
resolved	O
during	O
compile	B-Application
time	I-Application
.	O
</s>
<s>
Examples	O
are	O
templates	B-Application
in	I-Application
C++	I-Application
,	O
and	O
generic	B-Language
programming	I-Language
in	O
other	O
languages	O
,	O
in	O
conjunction	O
with	O
function	B-Language
overloading	I-Language
(	O
including	O
operator	O
overloading	B-Application
)	O
.	O
</s>
<s>
Code	O
is	O
said	O
to	O
be	O
monomorphised	B-Application
,	O
with	O
specific	O
data	O
types	O
deduced	O
and	O
traced	O
through	O
the	O
call	B-Application
graph	I-Application
,	O
in	O
order	O
to	O
instantiate	O
specific	O
versions	O
of	O
generic	O
functions	O
,	O
and	O
select	O
specific	O
function	O
calls	O
based	O
on	O
the	O
supplied	O
definitions	O
.	O
</s>
<s>
This	O
contrasts	O
with	O
dynamic	O
dispatch	O
,	O
which	O
is	O
based	O
on	O
runtime	O
information	O
(	O
such	O
as	O
vtable	B-Language
pointers	O
and	O
other	O
forms	O
of	O
run	O
time	O
type	O
information	O
)	O
.	O
</s>
<s>
Static	B-Language
dispatch	I-Language
is	O
possible	O
because	O
there	O
is	O
a	O
guarantee	O
of	O
there	O
only	O
ever	O
being	O
a	O
single	O
implementation	O
of	O
the	O
method	O
in	O
question	O
.	O
</s>
<s>
Static	B-Language
dispatch	I-Language
is	O
typically	O
faster	O
than	O
dynamic	O
dispatch	O
which	O
by	O
nature	O
has	O
higher	O
overhead	O
.	O
</s>
<s>
In	O
Rust	B-Application
.	O
</s>
<s>
Rust	B-Application
will	O
monomorphize	O
this	O
when	O
compiled	O
into	O
:	O
</s>
