Type Function toFloat [src]
Convert self to Float.
Prototype
pub fn toFloat(self: Mutable, comptime Float: type, round: Round) struct { Float, Exactness }
Parameters
self: Mutable
Float: type
round: Round
Source
pub fn toFloat(self: Mutable, comptime Float: type, round: Round) struct { Float, Exactness } {
return self.toConst().toFloat(Float, round);
}